foodcritic-3.0.3/0000755000004100000410000000000012263752452013702 5ustar www-datawww-datafoodcritic-3.0.3/bin/0000755000004100000410000000000012263752452014452 5ustar www-datawww-datafoodcritic-3.0.3/bin/foodcritic0000755000004100000410000000042312263752452016524 0ustar www-datawww-data#!/usr/bin/env ruby require_relative '../lib/foodcritic' module FoodCritic cmd_line = CommandLine.new(ARGV) review, status = Linter.check(cmd_line) printer = cmd_line.show_context? ? ContextOutput.new : SummaryOutput.new printer.output(review) exit status.to_i end foodcritic-3.0.3/features/0000755000004100000410000000000012263752452015520 5ustar www-datawww-datafoodcritic-3.0.3/features/029_check_for_no_leading_cookbook_name.feature0000644000004100000410000000157112263752452026463 0ustar www-datawww-dataFeature: Check for no leading cookbook name In order to ensure cookbook recipes are correctly listed As a developer I want to identify recipes defined in metadata that do not include the leading cookbook name Scenario Outline: Recipe declaration in metadata Given a cookbook with metadata that declares a recipe with When I check the cookbook Then the no leading cookbook name warning 029 should be Examples: | declaration | show_warning | | recipe "example", "Installs Example" | not shown | | recipe "example::default", "Installs Example" | not shown | | recipe "default", "Installs Example" | shown | | recipe my_var, "Installs Example" | not shown | | recipe "#{my_var}::default", "Installs Example" | not shown | foodcritic-3.0.3/features/018_check_for_old_lwrp_notification_syntax.feature0000644000004100000410000000251712263752452027473 0ustar www-datawww-dataFeature: Check for use of deprecated LWRP notification syntax In order to ensure LWRP notifications continue to work As a developer I want to identify when a LWRP notification uses the deprecated syntax Scenario: LWRP with no notifications Given a cookbook that contains a LWRP that does not trigger notifications When I check the cookbook Then the LWRP uses deprecated notification syntax warning 018 should not be displayed against the provider file Scenario: LWRP with deprecated notification syntax Given a cookbook that contains a LWRP that uses the deprecated notification syntax When I check the cookbook Then the LWRP uses deprecated notification syntax warning 018 should be displayed against the provider file Scenario: LWRP with deprecated notification syntax (class variable) Given a cookbook that contains a LWRP that uses the deprecated notification syntax with a class variable When I check the cookbook Then the LWRP uses deprecated notification syntax warning 018 should be displayed against the provider file Scenario: LWRP with current notification syntax Given a cookbook that contains a LWRP that uses the current notification syntax When I check the cookbook Then the LWRP uses deprecated notification syntax warning 018 should not be displayed against the provider filefoodcritic-3.0.3/features/013_check_for_hardcoded_tmpdir.feature0000644000004100000410000000215012263752452024755 0ustar www-datawww-dataFeature: Check for hard-coded temp directory In order to ensure that my cookbook works on a server that may have limited /tmp space As a developer I want to identify if my cookbook is hard-coding references to /tmp rather than using the Chef file cache path Scenario: Download to hard-coded temp directory Given a cookbook that downloads a file to /tmp When I check the cookbook Then the hard-coded temp directory warning 013 should be displayed Scenario: Download to hard-coded temp directory (expression) Given a cookbook that downloads a file to /tmp with an expression When I check the cookbook Then the hard-coded temp directory warning 013 should be displayed Scenario: Download to Chef file cache Given a cookbook that downloads a file to the Chef file cache When I check the cookbook Then the hard-coded temp directory warning 013 should not be displayed Scenario: Download to anywhere else Given a cookbook that downloads a file to a users home directory When I check the cookbook Then the hard-coded temp directory warning 013 should not be displayed foodcritic-3.0.3/features/006_check_file_mode.feature0000644000004100000410000000301412263752452022540 0ustar www-datawww-dataFeature: Check file mode In order to ensure that file and directory permissions are applied correctly As a developer I want to identify where the mode may not be interpreted as expected Scenario Outline: Specifying file mode Given a resource declared with the mode When I check the cookbook Then the warning 006 should be Examples: | resource | mode | shown_where_invalid | | cookbook_file | "644" | valid | | cookbook_file | 644 | invalid | | cookbook_file | 00644 | valid | | directory | 755 | invalid | | directory | "755" | valid | | directory | 0644 | valid | | directory | "0644" | valid | | directory | 400 | invalid | | directory | 00400 | valid | | file | "755" | valid | | file | 755 | invalid | | file | 644 | invalid | | file | 044 | invalid | | file | "0644" | valid | | template | 00400 | valid | | template | 400 | invalid | | template | "400" | valid | Scenario: Unspecified mode Given a file resource declared without a mode When I check the cookbook Then the warning 006 should not be displayed foodcritic-3.0.3/features/002_check_string_interpolation.feature0000644000004100000410000000423412263752452025073 0ustar www-datawww-dataFeature: Check String Interpolation In order to make my cookbooks more readable As a developer I want to identify if values are unnecessarily interpolated Scenario: Resource name interpolated string (symbol) Given a cookbook with a single recipe that creates a directory resource with an interpolated name When I check the cookbook Then the string interpolation warning 002 should be displayed Scenario: Resource name interpolated string Given a cookbook with a single recipe that creates a directory resource with an interpolated name from a string When I check the cookbook Then the string interpolation warning 002 should be displayed Scenario: Resource name string literal Given a cookbook with a single recipe that creates a directory resource with a string literal When I check the cookbook Then the string interpolation warning 002 should not be displayed Scenario: Resource name compound expression Given a cookbook with a single recipe that creates a directory resource with a compound expression When I check the cookbook Then the string interpolation warning 002 should not be displayed Scenario: Resource name literal and interpolated Given a cookbook with a single recipe that creates a directory resource with a literal and interpolated variable When I check the cookbook Then the string interpolation warning 002 should not be displayed Scenario: Resource name interpolated and literal Given a cookbook with a single recipe that creates a directory resource with an interpolated variable and a literal When I check the cookbook Then the string interpolation warning 002 should not be displayed Scenario: String interpolation in first Hash key Given a cookbook with a single recipe for which the first hash key is an interpolated string When I check the cookbook Then the string interpolation warning 002 should be displayed Scenario: String interpolation in first Hash value Given a cookbook with a single recipe for which the first hash value is an interpolated string When I check the cookbook Then the string interpolation warning 002 should be displayed foodcritic-3.0.3/features/027_check_for_internal_attribute_use.feature0000644000004100000410000000221712263752452026245 0ustar www-datawww-dataFeature: Check for use of internal attributes In order to avoid confusion about the expected state of a converged node As a developer I want to identify calls to 'internal' resource attributes Scenario Outline: Access of internal attributes Given a cookbook recipe that declares a resource with the attribute set to When I check the cookbook Then the resource sets internal attribute warning 027 should be Examples: | resource | attribute | value | show_warning | | service | enabled | true | shown | | service | enabled | false | shown | | service | enabled | [].include?('foo') | shown | | service | running | true | shown | | service | running | false | shown | | service | running | [].include?('foo') | shown | | service | service_name | "foo" | not shown | | my_lwrp | enabled | true | not shown | | my_lwrp | running | true | not shown | foodcritic-3.0.3/features/step_definitions/0000755000004100000410000000000012263752452021066 5ustar www-datawww-datafoodcritic-3.0.3/features/step_definitions/cookbook_steps.rb0000644000004100000410000017513212263752452024450 0ustar www-datawww-dataGiven 'a cookbook attributes file that declares and refers to a local variable' do write_attributes %q{ master = search(:nodes, 'foo:master') default[:foo][:master] = master } end Given /^a cookbook attributes file that refers to an attribute with (.*)$/ do |reference| write_attributes %Q{ default['myhostname'] = #{reference} } end Given 'a cookbook attributes file that sets an attribute to be the result of a library call' do write_attributes %q{ ::Chef::Node.send(:include, Opscode::OpenSSL::Password) default[:admin_password] = secure_password } end Given 'a cookbook attributes file with a brace block that takes arguments' do write_attributes %q{ foo = {'foo' => 'bar'} foo.each{|k, v| default['waka'][k] = v} } end Given 'a cookbook attributes file with a do block that takes arguments' do write_attributes %q{ foo = {'foo' => 'bar'} foo.each do |k, v| default['waka'][k] = v end } end Given /^a cookbook (attributes|recipe) file with assignment (.*)$/ do |type, assignment| if type == 'attributes' write_attributes assignment else write_recipe assignment end end Given "a cookbook recipe that contains a group resource that uses the 'system' attribute" do write_recipe %q{ group "senge" do system true end } end Given /^a cookbook recipe that declares (too many )?execute resources varying only in the command in branching conditionals$/ do |too_many| extra_resource = %q{ execute "bing" do action :run end } write_recipe %Q{ if true execute "foo" do action :run end else #{extra_resource if too_many} execute "bar" do action :run end execute "baz" do action :run end end }.strip end Given /^a cookbook recipe that declares a ([^ ]+) resource with the ([^ ]+) attribute set to (.*)$/ do |resource, attribute, value| write_recipe %Q{ #{resource} "foo" do #{attribute} #{value} end } end Given /^a cookbook recipe that executes '([^']+)' with an execute resource$/ do |command| write_recipe %Q{ execute "#{command}" do action :run end } end Given /^a cookbook recipe that spawns a sub-process with (.*)$/ do |command| write_recipe command end Given 'a cookbook recipe with a deploy resource that contains a template resource' do write_recipe %q{ deploy '/foo/bar' do before_restart do template "/tmp/config.conf" do source "foo.conf.erb" variables({ :config_var => 'foo' }) end end end } write_file "cookbooks/example/templates/default/foo.conf.erb", %q{ <%= @config_var %> } end Given 'a cookbook recipe with a resource that notifies where the action is an expression' do write_recipe %q{ notify_action = node['platform_family'] == "mac_os_x" ? :restart : :reload service 'svc' do action :nothing end template '/tmp/foo' do source 'foo.erb' notifies notify_action, 'service[svc]' end } end Given /^a cookbook recipe with an execute resource named (.*)$/ do |name| write_recipe %Q{ execute "#{name}" do action :run end } end Given /^a cookbook recipe with an execute resource that runs the command (.*)$/ do |command| write_recipe %Q{ execute "do_stuff" do command "#{command}" end } end Given /^a cookbook recipe that refers to (node.*)$/ do |reference| write_recipe %Q{ Chef::Log.info #{reference} } end Given 'a cookbook recipe that refers to an attribute with a bare keyword' do write_recipe %q{ node['myhostname'] = hostname } end Given /^a cookbook recipe that wraps a platform\-specific resource in a (.*) conditional$/ do |conditional| write_recipe %Q{ if #{conditional} Chef::Log.info('We matched the platform') end } end Given 'a cookbook provider that declares execute resources varying only in the command in separate actions' do write_provider 'site', %q{ action :start do execute "foo" do action :run end new_resource.updated_by_last_action(true) end action :stop do execute "bar" do action :run end new_resource.updated_by_last_action(true) end action :restart do execute "baz" do action :run end new_resource.updated_by_last_action(true) end }.strip end Given 'a cookbook provider that declares execute resources varying only in the command in the same action' do write_provider 'site', %q{ action :start do execute "foo" do action :run end execute "bar" do action :run end execute "baz" do action :run end new_resource.updated_by_last_action(true) end }.strip end Given /^a cookbook recipe that attempts to perform a search with (.*)$/ do |search_type| recipe_with_search(search_type.include?('subexpression') ? :with_subexpression : search_type.gsub(' ', '_').to_sym) end Given /^a cookbook recipe that declares a resource called ([^ ]+) with the condition (.*)(in|outside) a loop$/ do |name,condition,is_loop| write_recipe %Q{ #{'%w{rover fido}.each do |pet_name|' if is_loop == 'in'} execute #{name} do command "echo 'Feeding: \#{pet_name}'; touch '/tmp/\#{pet_name}'" #{condition.nil? ? 'not_if { ::File.exists?("/tmp/\#{pet_name}")}' : condition} end #{'end' if is_loop == 'in'} } end Given /^a cookbook recipe that declares (a resource|multiple resources) nested in a ([a-z_]+) condition with (.*)$/ do |arity, wrapping_condition, condition_attribute| blk = "{ File.exists?('/etc/passwd') }" str = "'test -f /etc/passwd'" conds = wrapping_condition.split('_') write_recipe %Q{ #{conds.first} node['foo'] == 'bar' service "apache" do action :enable #{ case condition_attribute when /(only_if|not_if) block/ then "#{$1} #{blk}" when /(only_if|not_if) string/ then "#{$1} #{str}" end } end #{%q{service "httpd" do action :enable end} if arity.include?('multiple')} #{"elsif true\nlog 'bar'" if conds.include? 'elsif'} #{"else\nlog 'foo'" if conds.include? 'else'} end } end Given /^a cookbook recipe that declares a resource with a (.*)$/ do |conditional| write_recipe %Q{ template "/tmp/foo" do mode "0644" source "foo.erb" #{conditional} end } end Given /^a cookbook recipe (?:that declares a resource with no conditions at all|with no notifications)$/ do write_recipe %q{ service "apache" do action :enable end } end Given 'a cookbook recipe that declares multiple directories with different file modes' do write_recipe %q{ directory "#{node["nagios"]["dir"]}/dist" do owner "nagios" group "nagios" mode 0755 end directory node["nagios"]["state_dir"] do owner "nagios" group "nagios" mode 0751 end directory "#{node["nagios"]["state_dir"]}/rw" do owner "nagios" group node["apache"]["user"] mode 2710 end } end Given 'a cookbook recipe that declares multiple package resources mixed with other resources' do write_recipe %q{ package "erlang-base" do action :install end package "erlang-corba" do action :install end package "erlang-crypto" do action :install end service "apache" do supports :restart => true, :reload => true action :enable end template "/tmp/somefile" do mode "0644" source "somefile.erb" not_if "test -f /etc/passwd" end package "rabbitmq-server" do action :install end } end Given /^a cookbook recipe that declares multiple (varying|non-varying) template resources within a block$/ do |vary| do_vary = vary == 'varying' write_recipe %Q{ node['apps'].each do |app| template "/etc/#\{app\}.conf" do owner "root" group "root" #{'mode "0600"' if do_vary} end template "/etc/init.d/#\{app\}" do owner "root" group "root" #{'mode "0700"' if do_vary} end template "/home/#\{app\}/foo" do owner "root" group "root" #{'mode "0600"' if do_vary} end end } end Given 'a cookbook recipe that declares multiple resources varying only in the package name' do write_recipe %q{ package "erlang-base" do action :install end package "erlang-corba" do action :install end package "erlang-crypto" do action :install end package "rabbitmq-server" do action :install end } end Given 'a cookbook recipe that declares multiple resources with more variation' do write_recipe %q{ package "erlang-base" do action :install end package "erlang-corba" do action :install end package "erlang-crypto" do version '13.b.3' action :install end package "rabbitmq-server" do action :install end } end Given 'a cookbook recipe that declares non contiguous package resources mixed with other resources' do write_recipe %q{ package "erlang-base" do action :install end service "apache" do supports :restart => true, :reload => true action :enable end package "erlang-crypto" do action :install end template "/tmp/somefile" do mode "0644" source "somefile.erb" not_if "test -f /etc/passwd" end package "rabbitmq-server" do action :install end } end Given 'a cookbook recipe that declares two or fewer resources varying only in the package name' do write_recipe %q{ package "erlang-base" do action :install end package "erlang-corba" do action :install end } end Given 'a cookbook recipe that has a confusingly named local variable "default"' do write_recipe %q{ default = {'run_list' => 'foo'}; Chef::Log.info default['run_list'] } end Given 'a cookbook recipe that has a wrapping condition containing a resource with no condition attribute and a Ruby statement' do write_recipe %q{ if node['foo'] == 'bar' Chef::Log.info "Enabling apache to start at boot" service "apache" do action :enable end end } end Given 'a cookbook recipe that has a wrapping condition containing a resource with no condition attribute within a loop' do write_recipe %q{ unless node['bar'].include? 'something' bars.each do |bar| service bar['name'] do action :enable end end end } end Given /^a cookbook recipe that includes a local recipe(.*)$/ do |diff_name| cookbook = diff_name.empty? ? 'example' : 'foo' write_recipe %Q{ include_recipe '#{cookbook}::server' } write_metadata %Q{ name '#{cookbook}' } end Given /^a cookbook recipe that includes a recipe name from an( embedded)? expression(.*)$/ do |embedded, expr| if embedded write_recipe %Q{ include_recipe "#{expr.strip}" } else write_recipe %q{ include_recipe node['foo']['bar'] } end write_metadata %q{ depends "foo" } end Given /^a cookbook recipe that includes a(n un| )?declared recipe dependency(?: {0,1})(unscoped)?( with parentheses)?$/ do |undeclared,unscoped, parens| recipe_with_dependency(:is_declared => undeclared.strip.empty?, :is_scoped => unscoped.nil?, :parentheses => parens) end Given 'a cookbook recipe that includes both declared and undeclared recipe dependencies' do write_recipe %q{ include_recipe "foo::default" include_recipe "bar::default" file "/tmp/something" do action :delete end include_recipe "baz::default" } write_metadata %q{ ['foo', 'bar'].each{|cbk| depends cbk} } end Given /^a cookbook recipe that includes several declared recipe dependencies - (brace|block)$/ do |brace_or_block| cookbook_declares_dependencies(brace_or_block.to_sym) end Given /a cookbook recipe that (install|upgrade)s (a gem|multiple gems)(.*)$/ do |action, arity, approach| if arity == 'a gem' if approach.empty? recipe_installs_gem(:simple, action.to_sym) else recipe_installs_gem(:compile_time, action.to_sym) end elsif approach.include? 'array' recipe_installs_gem(:compile_time_from_array, action.to_sym) else recipe_installs_gem(:compile_time_from_word_list, action.to_sym) end end Given 'a cookbook recipe that refers to a hidden template' do write_recipe %q{ template '/etc/.s3cfg' do source '.s3cfg.erb' end } write_file "cookbooks/example/templates/default/.s3cfg.erb", %q{ config=true } end Given /^a cookbook recipe that refers to a (missing |local )?template( in a subdirectory)?$/ do |missing_or_local, sub_dir| sub_dir = sub_dir ? 'sub_dir/' : '' write_recipe %Q{ template "/tmp/config.conf" do #{'local true' if missing_or_local == 'local '} source "#{sub_dir}config.conf.erb" variables({ :config_var => 'foo' }) end } unless missing_or_local write_file "cookbooks/example/templates/default/#{sub_dir}config.conf.erb", %q{ <%= @config_var %> } end end Given 'a cookbook recipe that refers to a template without an erb extension' do write_recipe %q{ template '/etc/resolv.conf' do source 'resolv.conf' end } write_file 'cookbooks/example/templates/default/resolv.conf', '' end Given 'a cookbook recipe that defines a template where name is a complex expression' do write_recipe %q{ template ::File.join(new_resource.foo.bar, "str", new_resource.baz) do variables({ :config_var => 'foo' }) end } write_file 'cookbooks/example/templates/default/barstrbaz.conf.erb', %q{ <%= @config_var %> } end Given 'a cookbook recipe that defines a template where both the name and source are complex expressions' do write_recipe %q{ template ::File.join(new_resource.foo.bar, "str", new_resource.baz) do source new_resource.foo.template variables({ :config_var => 'foo' }) end } write_file 'cookbooks/example/templates/default/barstrbaz.conf.erb', %q{ <%= @config_var %> } end Given 'a cookbook recipe that defines a template where name and source are both simple expressions' do write_recipe %q{ template "/tmp/config-#{foo}.conf" do source "config-#{foo}.erb" variables({ :config_var => 'foo' }) end } write_file 'cookbooks/example/templates/default/config-foo.conf.erb', %q{ <%= @config_var %> } end Given /^a cookbook recipe that (refers to|infers) a template with an expression$/ do |type| write_attributes %q{ default['foo']['name'] = 'foo' } write_recipe case type when 'infers' %q{ template "/tmp/config-#{node['foo']['name']}.conf" do variables({ :config_var => 'foo' }) end } else %q{ template "/tmp/config.conf" do source "config-#{node['foo']['name']}.erb" variables({ :config_var => 'foo' }) end } end write_file 'cookbooks/example/templates/default/config-foo.conf.erb', %q{ <%= @config_var %> } end Given 'a cookbook recipe that uses a template from another cookbook' do write_recipe %q{ template "foo" do cookbook "othercookbook" source "source_in_the_other_cookbook.erb" end } end Given /^a cookbook recipe that uses a(?:n)? (missing )?inferred template$/ do |missing| write_recipe %Q{ template "/tmp/config.conf" do variables({ :config_var => 'foo' }) end } unless missing write_file 'cookbooks/example/templates/default/config.conf.erb', %q{ <%= @config_var %> } end end Given /^a cookbook recipe that uses execute to (sleep and then )?([^ ]+) a service via (.*)$/ do |sleep, action, method| method = 'service' if method == 'the service command' recipe_controls_service(method.include?('full path') ? :service_full_path : method.gsub(/[^a-z_]/, '_').to_sym, sleep, action) end Given 'a cookbook recipe that uses execute to list a directory' do write_recipe %Q{ execute "nothing-to-see-here" do command "ls" action :run end } end Given 'a cookbook recipe that uses execute with a name attribute to start a service' do write_recipe %Q{ execute "/etc/init.d/foo start" do cwd "/tmp" end } end Given /^a cookbook recipe with a ([^ ]+) resource that subscribes to ([^ ]+) when notified by a remote_file$/ do |source, action| write_recipe %Q{ #{source} "foo" do action :nothing subscribes :#{action}, resources(:remote_file => "/foo/bar"), :immediately end } end Given /^a cookbook recipe with a ([^ ]+) resource with action (.*)$/ do |resource, action| write_recipe %Q{ #{resource} "foo" do action :#{action} end } end Given /^a cookbook recipe with a ([^ ]+) resource with actions (.*)$/ do |resource, actions| write_recipe %Q{ #{resource} "foo" do action [#{actions.split(', ').map{|a| ":#{a}"}.join(", ")}] end } end Given 'a cookbook recipe with a case condition unrelated to platform' do write_recipe %Q{ case day_of_week when "Monday", "Tuesday" package "foo" do action :install end when "Wednesday", "Thursday" package "bar" do action :install end end }.strip end Given /^a cookbook recipe with a resource that ([^ ]+)(?: )?([^ ]+)?$/ do |type,notification_timing| write_recipe %Q{ template "/etc/foo.conf" do #{type} :restart, "service[foo]"#{", :#{notification_timing}" if notification_timing} end } end Given /^a cookbook recipe with a resource that (notifies|subscribes) a ([^ ]+) to ([^ ]+)$/ do |type, resource, action| notification = case type when 'notifies' then %Q{notifies :#{action}, "#{resource}[foo]"} when 'subscribes' then %Q{subscribes :#{action}, resources(:#{resource} => "foo")} end write_recipe %Q{ template "/etc/apache.conf" do #{notification} end } end Given 'a cookbook recipe with a resource that uses the old notification syntax' do write_recipe %q{ template "/etc/www/configures-apache.conf" do notifies :restart, resources(:service => "apache") end } end Given /^a cookbook recipe with a '([^']+)' condition for flavours (.*)$/ do |type,flavours| platforms = %Q{"#{flavours.split(',').join('","')}"} if type == 'case' @expected_line = 6 write_recipe %Q{ case node[:platform] when "debian", "ubuntu" package "foo" do action :install end when #{platforms} package "bar" do action :install end end }.strip elsif type == 'platform?' @expected_line = 1 write_recipe %Q{ if platform?(#{platforms}) package "bar" do action :install end end }.strip else fail "Unrecognised type: #{type}" end end Given 'a cookbook recipe with a service resource that does not specify an action' do write_recipe %q{ service "foo" do start_command "/sbin/service foo start" end }.strip end Given 'a cookbook recipe with a service resource with an action specified via a variable' do write_recipe %q{ service "foo" do action action end }.strip end Given 'a cookbook template that uses all variables passed' do write_recipe %q{ template "/tmp/config.conf" do source "config.conf.erb" variables( :config_var => node[:configs][:config_var] ) end } write_file 'cookbooks/example/templates/default/config.conf.erb', %q{ <%= @config_var %> } end Given /^a cookbook that passes no variables to a template$/ do write_recipe %q{ template "/tmp/config.conf" do source "config.conf.erb" end } end Given /^a cookbook that passes variables (.*) to a template with extension (.*)$/ do |vars, ext| write_recipe %Q{ template "/tmp/config.conf" do source "config#{ext}" variables( :#{vars.split(',').map{|v| "#{v} => node[:#{v}]"}.join(",\n:")} ) end } end Given /^a cookbook that passes variables (.*) to an inferred template$/ do |vars| write_recipe %Q{ template "/tmp/config.conf" do variables( :#{vars.split(',').map{|v| "#{v} => node[:#{v}]"}.join(",\n:")} ) end } end Given /^a cookbook that contains a (short|long) ruby block$/ do |length| recipe_with_ruby_block(length.to_sym) end Given 'a cookbook that contains a definition' do write_definition("apache_site", %q{ define :apache_site, :enable => true do log "I am a definition" end }) write_recipe %q{ apache_site "default" } end Given /^a cookbook that contains a LWRP (?:with a single notification|that uses the current notification syntax)$/ do cookbook_with_lwrp({:notifies => :does_notify}) end Given 'a cookbook that contains a LWRP with a single notification without parentheses' do cookbook_with_lwrp({:notifies => :does_notify_without_parens}) end Given /^a cookbook that contains a LWRP that declares a resource called ([^ ]+) with the condition (.*)$/ do |name,condition| write_resource("site", %q{ actions :create attribute :name, :name_attribute => true }) write_provider("site", %Q{ action :create do execute #{name} do command "echo 'Creating: \#{new_resource.name}'; touch '/tmp/\#{new_resource.name}'" #{condition} end end }) end Given /^a cookbook that contains a LWRP that (?:does not trigger notifications|declares a resource with no condition)$/ do write_resource("site", %q{ actions :create attribute :name, :kind_of => String, :name_attribute => true }) write_provider("site", %q{ action :create do log "Here is where I would create a site" end }) end Given /^a cookbook that contains a LWRP that uses converge_by - (brace|do) block (with|without) parentheses$/ do |block_type, with_parens| write_resource("site", %q{ actions :create attribute :name, :kind_of => String, :name_attribute => true }) if block_type == 'brace' write_provider("site", %q{ action :create do converge_by("Creating site #{new_resource.name}"){ Site.new(new_resource.name).create } end }) else if with_parens == 'with' write_provider("site", %q{ action :create do converge_by("Creating site #{new_resource.name}") do Site.new(new_resource.name).create end end }) else write_provider("site", %q{ action :create do converge_by "Creating site #{new_resource.name}" do Site.new(new_resource.name).create end end }) end end end Given /^a cookbook that contains a LWRP that uses the deprecated notification syntax(.*)$/ do |qualifier| cookbook_with_lwrp({:notifies => qualifier.include?('class variable') ? :class_variable : :deprecated_syntax}) end Given 'a cookbook that contains a LWRP that uses use_inline_resources' do cookbook_with_lwrp({:use_inline_resources => true}) end Given 'a cookbook that contains a LWRP with multiple notifications' do write_resource("site", %q{ actions :create, :delete attribute :name, :kind_of => String, :name_attribute => true }) write_provider("site", %q{ action :create do log "Here is where I would create a site" new_resource.updated_by_last_action(true) end action :delete do log "Here is where I would delete a site" new_resource.updated_by_last_action(true) end }) end Given /^a cookbook that contains a LWRP with (no|a) default action( defined via a constructor)?$/ do |has_default_action,no_dsl| default_action = if has_default_action == 'no' :no_default_action elsif no_dsl.nil? :dsl_default_action else :ruby_default_action end cookbook_with_lwrp({:default_action => default_action, :notifies => :does_notify}) end Given 'a cookbook that contains no ruby blocks' do write_recipe %q{ package "tar" do action :install end } end Given /^a cookbook that declares ([a-z]+) attributes via symbols$/ do |attribute_type| attributes_with_symbols(attribute_type) end Given /^a cookbook that does not contain a definition and has (no|a) definitions directory$/ do |has_dir| create_dir 'cookbooks/example/definitions/' unless has_dir == 'no' write_recipe %q{ log "A defining characteristic of this cookbook is that it has no definitions" } end Given 'a cookbook that does not have a README at all' do write_recipe %q{ log "Use the source luke" } end Given 'a cookbook that does not have defined metadata' do write_recipe %q{ include_recipe "foo::default" } end Given /^a cookbook that downloads a file to (.*)$/ do |path| recipe_downloads_file({'/tmp' => :tmp_dir, '/tmp with an expression' => :tmp_dir_expr, 'the Chef file cache' => :chef_file_cache_dir, 'a users home directory' => :home_dir}[path]) end Given /^a cookbook that has ([^ ]+) problems$/ do |problems| cookbook_that_matches_rules( problems.split(',').map do |problem| case problem when 'no ' then next when 'style' then 'FC002' when 'correctness' then 'FC006' end end ) end Given 'a cookbook that has a README in markdown format' do write_recipe %q{ log "Hello" } write_file 'cookbooks/example/README.md', %q{ Description =========== Hi. This is markdown. } end Given 'a cookbook that has a README in RDoc format' do write_recipe %q{ log "Hello" } write_file 'cookbooks/example/README.rdoc', %q{ = DESCRIPTION: I used to be the preferred format but not any more (sniff). } end Given /^a cookbook that has maintainer metadata set to (.*) and ([^ ]+)$/ do |name,email| cookbook_with_maintainer(nil_if_unspecified(name), nil_if_unspecified(email)) end Given 'a cookbook that has the default boilerplate metadata generated by knife' do cookbook_with_maintainer('YOUR_COMPANY_NAME', 'YOUR_EMAIL') end Given /^a cookbook that matches rules (.*)$/ do |rules| cookbook_that_matches_rules(rules.split(',')) end Given 'a cookbook that matches that rule' do write_recipe %q{ execute "bar" do action :run end } end Given /^a cookbook with a ([^ ]+) that (includes|does not include) a breakpoint$/ do |component,includes| content = case component when 'template' then includes == 'includes' ? "Hello <% require 'pry'; binding.pry %>" : 'Hello World' else includes == 'includes' ? 'binding.pry' : '# No breakpoint' end write_recipe '' case component when 'library' then write_library 'foo', content when 'metadata' then write_metadata content when 'provider' then write_provider 'foo', content when 'recipe' then write_recipe content when 'resource' then write_resource 'foo', content when 'template' then write_file 'cookbooks/example/templates/default/foo.erb', content else fail "Unrecognised component: #{component}" end end Given /^a cookbook with a single recipe for which the first hash (key|value) is an interpolated string$/ do |key_or_value| write_recipe case key_or_value when 'key' then %q{{"#{foo}" => 'bar', 'bar' => 'foo'}} when 'value' then %q{{'foo' => "#{bar}", 'bar' => 'foo'}} end end Given 'a cookbook with a single recipe that mixes node access types in an interpolated value' do write_recipe %q{ execute "interpolated-example" do command "#{node['foo'][:bar]}'" end } end Given 'a cookbook with a single recipe that reads multiple node attributes via symbols,strings' do write_recipe %q{ node[:foo] = 'bar' node[:baz] = 'foo' node[:wham] = 'shazam' node['testing'] = 'bar' node['testing2'] = 'bar2' } end Given 'a cookbook with a single recipe that accesses nested node attributes via symbols' do write_recipe %q{node[:foo][:foo2] = 'bar'} end Given 'a cookbook with a single recipe that reads node attributes via symbols and quoted_symbols' do write_recipe %q{default[:foo][:'bar-baz']} end Given /^a cookbook with a single recipe that triggers FC019 with comment (.*)$/ do |comment| write_recipe %Q{ file node[:bar] do content node['foo'] #{comment} action:create end }.strip end Given 'a cookbook with a single recipe that calls a patched node method' do write_library 'search', %q{ class Chef class Node def in_tier?(*tier) tier.flatten.include?(node['tier']) end end end } write_recipe %q{ if node['something']['bar'] || node.in_tier?('foof') Chef::Log.info("Node has been patched") end } end Given /^a cookbook with a single recipe that explicitly calls a node method( with multiple arguments)?$/ do |multi| write_recipe %Q{ if node[:bar] and node.foo(#{multi ? 'bar, baz' : ''}) Chef::Log.info('Explicit node method call should be ignored') end } end Given 'a cookbook with a single recipe that passes node attributes accessed via symbols to a template' do write_recipe %q{ template "/etc/foo" do source "foo.erb" variables({ :port => node[:foo][:port], :user => node[:foo][:user] }) end }.strip end Given 'a cookbook with a single recipe that uses a hash value to access a node attribute' do write_recipe %q{ some_hash = { :key => "value" } execute "accesses-hash" do command "echo #{node['foo'][some_hash[:key]]}" end }.strip end Given /a(nother)? cookbook with a single recipe that (reads|updates|ignores)(nested)? node attributes via ([a-z,]*)(?:(?: and calls node\.)?([a-z_?]+)?| with (.*)?)(?: only)?$/ do |more_than_one,op,nested,types,method,expr| cookbook_name = more_than_one.nil? ? 'example' : 'another_example' access = nested.nil? ? {:strings => "['foo']", :symbols => '[:foo]', :vivified => '.foo'} : {:strings => "['bar']['baz']", :symbols => '[:fee][:fi][:fo][:fum]', :vivified => '.bar.baz'} recipe_content = (if types == 'none' "log 'hello world'" elsif op == 'reads' types.split(',').map{|type| "log node#{access[type.to_sym]}"}.join("\n") else types.split(',').map{|type| "node#{access[type.to_sym]} = 'foo'"}.join("\n") end) recipe_content += "\n#{expr}" unless method.nil? recipe_content += {:platform? => "node.platform?('redhat')", :run_list => "log 'hello' if node.run_list.roles.include?(node[:foo][:bar])", :run_state => "node.run_state[:reboot_requested] = true", :set => "node.set['foo']['bar']['baz'] = 'secret'"}[method.to_sym] end write_recipe(recipe_content, cookbook_name) end Given 'a cookbook with a single recipe that searches based on a node attribute accessed via strings' do write_recipe %q{ remote = search(:node, "name:#{node['drbd']['remote_host']}")[0] }.strip end Given 'a cookbook with a single recipe which accesses node attributes with symbols on lines 2 and 10' do write_recipe %q{ # Here we access the node attributes via a symbol foo = node[:foo] # String access is in the majority node['foo'] node['bar'] node['baz'] # Second access via a symbol bar = node[:bar] } end Given 'a cookbook with a single recipe that assigns node attributes accessed via symbols to a local variable' do write_recipe %q{baz = node[:foo]} end Given /^a cookbook with a single recipe that creates a directory resource with (.*)$/ do |path_type| recipe_with_dir_path({'an interpolated name' => :interpolated_symbol, 'an interpolated name from a string' => :interpolated_string, 'a string literal' => :string_literal, 'a compound expression' => :compound_symbols, 'an interpolated variable and a literal' => :interpolated_symbol_and_literal, 'a literal and interpolated variable' => :literal_and_interpolated_symbol}[path_type]) end Given 'a cookbook with a single recipe that searches but checks first (alternation) to see if this is server' do write_recipe %q{ if Chef::Config[:solo] || we_dont_want_to_use_search # set up stuff from attributes else # set up stuff from search nodes = search(:node, "hostname:[* TO *] AND chef_environment:#{node.chef_environment}") end } end Given /^a cookbook with a single recipe that searches but checks first( \(string\))? to see if this is server$/ do |str| write_recipe %Q{ if Chef::Config[#{str ? "'solo'" : ":solo"}] Chef::Log.warn("This recipe uses search. Chef Solo does not support search.") else nodes = search(:node, "hostname:[* TO *] AND chef_environment:#\{node.chef_environment\}") end } end Given /^a cookbook with a single recipe that searches but checks with a negative first to see if this is server$/ do write_recipe %q{ unless Chef::Config['solo'] nodes = search(:node, "hostname:[* TO *]") else Chef::Log.warn("This recipe uses search. Chef Solo does not support search.") end } end Given /^a cookbook with a single recipe that searches but checks first \(method\) to see if this is server$/ do write_recipe %Q{ if Chef::Config.solo Chef::Log.warn("This recipe uses search. Chef Solo does not support search.") else nodes = search(:node, "hostname:[* TO *] AND chef_environment:#\{node.chef_environment\}") end } end Given /^a cookbook with a single recipe that searches but returns first \((oneline|multiline)\) if search is not supported$/ do |format| if format == 'oneline' write_recipe %q{ return Chef::Log.warn("This recipe uses search. Chef Solo does not support search.") if Chef::Config[:solo] nodes = search(:node, "hostname:[* TO *] AND chef_environment:#{node.chef_environment}") } else write_recipe %q{ if Chef::Config[:solo] return Chef::Log.warn("This recipe uses search. Chef Solo does not support search.") end nodes = search(:node, "hostname:[* TO *] AND chef_environment:#{node.chef_environment}") } end end Given 'a cookbook with a single recipe that searches without checking if this is server' do write_recipe %q{nodes = search(:node, "hostname:[* TO *] AND chef_environment:#{node.chef_environment}")} end Given 'a cookbook with five recipes' do end Given /^a cookbook with metadata that declares a recipe with (.*)$/ do |declaration| write_metadata declaration write_recipe "" end Given /^a cookbook with metadata that (specifies|does not specify) the cookbook name$/ do |specifies| write_metadata %Q{ #{"name 'example'" if specifies == 'specifies'} } end Given /^a directory that contains a role file ([^ ]+) in (json|ruby) that defines role name (.*)$/ do |file_name, format, role_name| role(:role_name => %Q{"#{role_name}"}, :file_name => file_name, :format => format.to_sym) end Given 'a directory that contains a ruby role that declares the role name more than once' do role(:role_name => ['"webserver"', '"apache"'], :file_name => 'webserver.rb') end Given 'a directory that contains a ruby role with an expression as its name' do role(:role_name => '"#{foo}#{bar}"', :file_name => 'webserver.rb') end Given /^a directory that contains an environment file (.*) in ruby that defines environment name (.*)$/ do |file_name, env_name| environment(:environment_name => %Q{"#{env_name}"}, :file_name => 'production.rb') end Given /^a ([a-z_]+) resource declared with the mode ([^\s]+)(?: with comment (.*)?)?$/ do |resource,mode,comment| recipe_resource_with_mode(resource, mode, comment) end Given 'a file resource declared without a mode' do write_recipe %q{ file "/tmp/something" do action :delete end } end Given /^a file with multiple errors on one line(?: with comment (.*))?$/ do |comment| write_file "cookbooks/example/recipes/default.rb", %Q{node['run_state']['nginx_force_recompile'] = "\#{foo}"#{comment}} end Given(/^a LWRP with an action :create that notifies with (converge_by|updated_by_last_action) and another :delete that does not notify$/) do |notify_type| cookbook_with_lwrp_actions([ {:name => :create, :notify_type => notify_type.to_sym}, {:name => :delete, :notify_type => :none} ]) end Given /^(?:a roles|an environments) directory$/ do end Given /^a Rakefile that defines (no lint task|a lint task with no block|a lint task with an empty block|a lint task with a block setting options to)(.*)?$/ do |task,options| rakefile( case task when /no block/ then :no_block when /empty block/ then :empty_block when /a block/ then :block end, options.strip.empty? ? {} : {:options => options.strip}) end Given /^a Rakefile that defines a lint task specifying files to lint as (.*)$/ do |files| rakefile(:block, :files => files) end Given 'a Rakefile that defines a lint task specifying a different name' do rakefile(:block, :name => 'lint') end Given 'a recipe that contains a ruby block without a block attribute' do write_recipe %q{ ruby_block "missing block" do puts "Missing a block attribute" end } end Given 'a recipe that contains both long and short ruby blocks' do recipe_with_ruby_block(:both) end Given /^a recipe that declares a ([^ ]+) resource with these attributes: (.*)$/ do |type,attributes| recipe_with_resource(type, attributes.split(',')) end Given 'a recipe that declares a resource with an attribute value set to the result of a method call' do write_recipe %q{ cron "run a command at a random minute" do user "root" minute rand(60) command "/usr/bin/whatever" end } end Given 'a recipe that declares a resource with only a name attribute' do write_recipe %q{ package 'foo' } end Given 'a recipe that declares a resource with recognised attributes and a conditional execution ruby block' do write_recipe %q{ file "/tmp/something" do owner "root" group "root" mode "0755" not_if do require 'foo' Foo.bar?(filename) end action :create end } end Given 'a recipe that declares a resource with recognised attributes and a nested block' do write_recipe %q{ deploy_revision "foo" do revision "HEAD" repository "git://github.com/git/git.git" deploy_to "/foo" action :deploy before_migrate do execute "bundle install" do cwd release_path action :run end end end } end Given 'a recipe that declares a resource with standard attributes' do write_recipe %q{ file "/tmp/something" do owner "root" group "root" mode "0755" action :create end } end Given 'a recipe that declares a user-defined resource' do write_recipe %q{ apple "golden-delicious" do colour "yellow" action :consume end } end Given 'a recipe that declares multiple resources of the same type of which one has a bad attribute' do write_recipe %q{ file "/tmp/something" do owner "root" group "root" mode "0755" action :create end file "/tmp/something" do punter "root" group "root" mode "0755" action :create end package "foo" do action :install end } end Given 'a resource declared with a guard within a loop with multiple block arguments' do write_recipe %q{ { 'foo' => 'bar', 'baz' => 'bing', }.each do |foo, bar| package bar do not_if { node['foo'] == foo } action :install end end } end Given /^a rule that (declares|does not declare) a version constraint(?: of ([^ ]+)? to ([^ ]+)?)?$/ do |constraint, from, to| if from || to rule_with_version_constraint(from, to) else from_version = case constraint when /not/ then nil else '0.10.6' end rule_with_version_constraint(from_version, nil) end end Given /^a template that includes a partial( that includes the original template again)?$/ do |loops| write_recipe %q{ template "/tmp/a" do source "a.erb" variables({ :config_var => "foo" }) end } write_file 'cookbooks/example/templates/default/a.erb', '<%= render "b.erb" %>' content = if loops '<%= render "a.erb" %>' else '<%= @config_var %>' end write_file 'cookbooks/example/templates/default/b.erb', content end Given /^a template that includes a (missing )?partial with a relative subdirectory path$/ do |missing| write_recipe %q{ template "/tmp/a" do source "a.erb" variables({ :config_var => "foo" }) end } write_file 'cookbooks/example/templates/default/a.erb', '<%= render "partials/b.erb" %>' unless missing write_file 'cookbooks/example/templates/default/partials/b.erb', 'Partial content' end end Given 'access to the man page documentation' do end Given /^another cookbook that has (an older )?chef-solo-search installed$/ do |older| if older.nil? write_library 'search', %q{ class Chef module Mixin module Language def search(bag_name, query=nil, sort=nil, start=0, rows=1000, &block) # https://github.com/edelight/chef-solo-search end end end end } else write_library 'search', %q{ class Chef class Recipe def search(bag_name, query=nil, sort=nil, start=0, rows=1000, &block) # https://github.com/edelight/chef-solo-search end end end } end end Given 'I have installed the lint tool' do end Given 'metadata' do write_metadata %q{ name 'example' }.strip end Given /^(?:a cookbook that has|the cookbook has) a Gemfile that includes rake and foodcritic$/ do buildable_gemfile end Given /^the current stable version of Chef (falls|does not fall) within it$/ do |falls_within| rule_with_version_constraint("98.10", nil) unless falls_within.include?('falls') end Given 'the gems have been vendored' do vendor_gems end Given 'the last role name declared does not match the containing filename' do end Given /^the inferred template contains the expression (.*)$/ do |expr| write_file "cookbooks/example/templates/default/config.conf.erb", %Q{ <%= #{expr} %> } end Given /^the template (.+)?contains the expression (.*)$/ do |ext,expr| file = if ext "templates/default/config#{ext.strip}" else 'templates/default/config.conf.erb' end write_file "cookbooks/example/#{file}", %Q{ <%= #{expr} %> } end Given /^the template (.+)?contains partial includes of type (.*) with the expression (.*)$/ do |ext,type,expr| file = if ext "config#{ext.strip}" else 'config.conf.erb' end if type == 'nested' and expr.split(',').length > 1 expressions = expr.split(',') includes = (1..expressions.length).map{|i| "included_template_#{i}.erb"} (Array(file) + includes).zip(includes).map do |parent, child| content = if child "<%= render '#{child}' %>" else expressions.map{|e| "<%= #{e} %>"}.join("\n") end [parent, content] end.each do |template_name, content| write_file "cookbooks/example/templates/default/#{template_name}", content end else if type == 'no parentheses' include_string = "<%= render 'included_template.erb' %>" else include_string = "<%= render('included_template.erb') %>" end write_file "cookbooks/example/templates/default/#{file}", %Q{ #{include_string} } write_file "cookbooks/example/templates/default/included_template.erb", %Q{ <%= #{expr} %> } end end Given 'unit tests under a top-level test directory' do minitest_spec_attributes end Given 'a recipe that installs a gem with 5 retries' do write_recipe %q{ gem_package "foo" do retries 5 action :install end } end Given 'a recipe that installs a package with yum specifying the architecture' do write_recipe %q{ yum_package "foo" do arch "x86_64" action :install end } end Given 'a recipe that reconfigures a package' do write_recipe %q{ apt_package "foo" do action :reconfig end } end Given /^a recipe that uses require_recipe$/ do write_recipe %Q{ require_recipe "foo::default" } end Given /^a recipe that uses include_recipe$/ do write_recipe %Q{ include_recipe "foo::default" } end Given /^a ruby environment file that defines an environment with name (.*)$/ do |env_name| environment(:environment_name => %Q{"#{env_name}"}, :file_name => 'production.rb') end Given /^a ruby environment that triggers FC050 with comment (.*)$/ do |comment| write_file 'environments/production.rb', %Q{ name "Production (eu-west-1)" #{comment} run_list "recipe[apache2]" }.strip end Given /^a ruby role file that defines a role with name (.*)$/ do |role_name| role(:role_name => [%Q{"#{role_name}"}], :file_name => 'webserver.rb') end Given /^a ruby role that triggers FC049 with comment (.*)$/ do |comment| write_file 'roles/webserver.rb', %Q{ name "apache" #{comment} run_list "recipe[apache2]" }.strip end Given /^a template directory that contains a binary file (.*) that is not valid UTF-8$/ do |filename| template_dir = 'cookbooks/example/templates/default' write_recipe '' write_file "#{template_dir}/innocent_template.erb", '<%= hello %>' File.open("#{current_dir}/#{template_dir}/#{filename}", 'wb'){|f| f.putc(0x93)} end Given 'each role directory has a role with a name that does not match the containing file name' do role(:dir => 'roles1', :role_name => '"apache"', :file_name => 'webserver.rb') role(:dir => 'roles2', :role_name => '"postgresql"', :file_name => 'database.rb') end Given /^it contains an environment file (.*\.rb) that defines the environment name (.*)$/ do |file_name, env_name| environment(:environment_name => env_name, :file_name => file_name) end Given /^it contains a role file ([a-z]+\.rb) that defines the role name (.*)$/ do |file_name, role_name| role(:role_name => role_name, :file_name => file_name) end Given /^the cookbook metadata declares support for (.*)$/ do |supported_platforms| write_metadata(supported_platforms.split(',').map do |platform| "supports '#{platform}'" end.join("\n")) end Given 'the cookbook metadata declares support with versions specified' do write_metadata %q{ supports 'redhat', '>= 6' supports 'scientific', '>= 6' }.strip end Given 'three of the recipes read node attributes via strings' do (1..3).map{|i| "string_#{i}"}.each do |recipe| write_file "cookbooks/example/recipes/#{recipe}.rb", "Chef::Log.warn node['foo']" end end Given 'two of the recipes read node attributes via symbols' do (1..2).map{|i| "symbol_#{i}"}.each do |recipe| write_file "cookbooks/example/recipes/#{recipe}.rb", "Chef::Log.warn node[:foo]" end end Given 'two roles directories' do end When /^I check the cookbook specifying ([^ ]+) as the Chef version$/ do |version| options = ['-c', version, 'cookbooks/example'] in_current_dir do options = ['-I', 'rules/test.rb'] + options if Dir.exists?('rules') end run_lint(options) end When /^I check the cookbook( tree)?(?: specifying tags(.*))?(, specifying that context should be shown)?$/ do |whole_tree, tags, context| options = tags.nil? ? [] : tags.split(' ') options += ['-C'] unless context.nil? run_lint(options + ["cookbooks/#{whole_tree.nil? ? 'example' : ''}"]) end Given /^the cookbook directory has a \.foodcritic file specifying tags (.*)$/ do |tags| write_file "cookbooks/example/.foodcritic", tags run_lint(["cookbooks/example"]) end When 'I check both cookbooks specified as arguments' do run_lint(["cookbooks/another_example", "cookbooks/example"]) end When /^I check both cookbooks with the command-line (.*)$/ do |command_line| cmds = command_line.split(' ').map do |c| if c.end_with?('example') "cookbooks/#{c}" else c end end run_lint(cmds) end When 'I check the cookbooks, role and environment together' do run_lint([ '-B', 'cookbooks/another_example', '-B', 'cookbooks/example', '-E', 'environments', '-R', 'roles' ]) end When 'I check the cookbook without specifying a Chef version' do run_lint(['-I', 'rules/test.rb', 'cookbooks/example']) end When 'I check the environment directory' do run_lint ['-E', 'environments'] end When 'I check both roles directories' do run_lint ['-R', 'roles1', '-R', 'roles2'] end When 'I check the eu environment file only' do run_lint ['-E', 'environments/production_eu.rb'] end When 'I check the recipe' do run_lint(["cookbooks/example/recipes/default.rb"]) end When 'I compare the man page options against the usage options' do end When 'I check the role directory' do run_lint ['-R', 'roles'] end When /^I check the role directory as a (default|cookbook|role) path$/ do |path_type| options = case path_type when 'default' then ['roles'] when 'cookbook' then ['-B', 'roles'] when 'role' then ['-R', 'roles'] end run_lint(options) end When 'I check the webserver role only' do run_lint ['-R', 'roles/webserver.rb'] end When 'I list the available build tasks' do list_available_build_tasks end When /^I run it on the command line including a custom rule (file|directory) containing a rule that matches$/ do |path_type| write_file 'rules/custom_rules.rb', %q{ rule "BAR001", "Use symbols in preference to strings to access node attributes" do tags %w{style attributes} recipe do |ast| attribute_access(ast, :type => :string).map{|ar| match(ar)} end end } run_lint(['-I', path_type == 'file' ? 'rules/custom_rules.rb' : 'rules', 'cookbooks/example']) end When /^I run it on the command line including a file which does not contain Ruby code$/ do write_file 'rules/invalid_rules.rb', 'echo "not ruby"' capture_error do run_lint(['-I', 'rules/invalid_rules.rb', 'cookbooks/example']) end end When /^I run it on the command line including a missing custom rule file$/ do capture_error do run_lint(['-I', 'rules/missing_rules.rb', 'cookbooks/example']) end end When 'I run it on the command line specifying a cookbook that does not exist' do run_lint(['no-such-cookbook']) end When /^I run it on the command line specifying a( role|n environment) directory that does not exist$/ do |type| if type.include?('role') run_lint(['-R', 'no-such-role-dir']) else run_lint(['-E', 'no-such-environment-dir']) end end When 'I run it on the command line with no arguments' do run_lint([]) end When /^I run it on the command line with the (?:unimplemented |)([^ ]+) option( with an argument)?$/ do |option, with_argument| options = [] if option.match(/\-\w$/) options << option else options << "--#{option}" end options << "cookbooks/example" unless with_argument.nil? run_lint(options) end When 'I run the build' do run_build end Then 'a warning for the custom rule should be displayed' do expect_output('BAR001: Use symbols in preference to strings to access node attributes: cookbooks/example/recipes/default.rb:1') end Then 'all options should be documented in the man page' do man_page_options.should == usage_options_for_diff end Then /^an? '([^']+)' error should be displayed$/ do |expected_error| last_error.should include expected_error end Then 'the attribute consistency warning 019 should be shown for both of the recipes that use symbols' do expect_warning 'FC019', :file => 'recipes/symbol_1.rb' expect_warning 'FC019', :file => 'recipes/symbol_2.rb' end Then /^the bare attribute keys warning 044 should not be displayed against the (brace|do) block$/ do |block_type| line = block_type == 'brace' ? 2 : 3 expect_warning 'FC044', {:expect_warning => false, :line => line, :file_type => :attributes} end Then /^the bare attribute keys warning 044 should not be displayed against the (?:local variable|library call)$/ do expect_warning 'FC044', {:expect_warning => false, :line => 2, :file_type => :attributes} end Then /^the LWRP does not notify when updated warning 017 should( not)? be shown against the :([^ ]+) action$/ do |not_shown, action| line = action == 'create' ? 1 : 8 expect_warning('FC017', :file_type => :provider, :expect_warning => ! not_shown, :line => line) end Then /^the invalid (role|environment) name warning 050 should( not)? be shown$/ do |type, not_shown| file = type == 'role' ? 'roles/webserver.rb' : 'environments/production.rb' expect_warning 'FC050', {:expect_warning => ! not_shown, :file => file} end Then /^the invalid environment name warning 050 should( not)? be shown against the (eu|us) environment$/ do |not_shown, env| expect_warning 'FC050', {:expect_warning => ! not_shown, :file => "environments/production_#{env}.rb", :line => 1} end Then 'the prefer mixlib shellout warning 048 should not be displayed against the group resource' do expect_warning 'FC048', {:expect_warning => false, :line => 2} end Then /^the role name does not match file name warning 049 should( not)? be shown( against the second name)?$/ do |not_shown, second| expect_warning 'FC049', {:expect_warning => ! not_shown, :file => 'roles/webserver.rb', :line => second ? 2 : 1} end Then 'the role name does not match file name warning 049 should be shown against the files in both directories' do expect_warning 'FC049', {:file => "roles1/webserver.rb", :line => 1} expect_warning 'FC049', {:file => "roles2/database.rb", :line => 1} end Then /^the role name does not match file name warning 049 should( not)? be shown against the (webserver|database) role$/ do |not_shown, role| expect_warning 'FC049', {:expect_warning => ! not_shown, :file => "roles/#{role}.rb", :line => 1} end Then 'the long ruby block warning 014 should be displayed against the long block only' do expect_warning 'FC014', {:expect_warning => false, :line => 1} expect_warning 'FC014', {:expect_warning => true, :line => 11} end Then /^the lint task will be listed( under the different name)?$/ do |diff_name| expected_name = diff_name ? 'lint' : 'foodcritic' build_tasks.should include([expected_name, 'Lint Chef cookbooks']) end Then 'no error should have occurred' do assert_no_error_occurred end Then /^no warnings will be displayed against the tests$/ do assert_no_test_warnings end Then 'the attribute consistency warning 019 should warn on lines 2 and 10 in that order' do expected_warnings = [2, 10].map do |line| "FC019: Access node attributes in a consistent manner: cookbooks/example/recipes/default.rb:#{line}" end expect_output(expected_warnings.join("\n")) end Then 'the attribute consistency warning 019 should be displayed for the recipe' do expect_warning('FC019', :line => 2) end Then 'the attribute consistency warning 019 should not be displayed for the attributes' do expect_warning('FC019', :file_type => :attributes, :line => 1, :expect_warning => false) end Then /^the warning ([0-9]+ )?should (not )?be (?:displayed|shown)$/ do |warning,should_not| code = warning.nil? ? 'FCTEST001' : "FC#{warning.strip}" expect_warning code, {:expect_warning => should_not.nil?} end Then /^the (?:[a-zA-Z \-_]+) warning ([0-9]+) should (not )?be displayed(?: against the (attributes|libraries|definition|metadata|provider|resource|README.md|README.rdoc) file)?( below)?$/ do |code, no_display, file, warning_only| options = {} options[:expect_warning] = no_display != 'not ' unless file.nil? if file.include?('.') options[:file] = file else options[:file_type] = file.to_sym end end options[:line] = 3 if code == '018' and options[:expect_warning] options[:line] = 2 if ['021', '022'].include?(code) options[:warning_only] = ! warning_only.nil? expect_warning("FC#{code}", options) end Then /^the attribute consistency warning 019 should be (shown|not shown)$/ do |show_warning| expect_warning('FC019', :line => nil, :expect_warning => show_warning == 'shown') end Then /^the boilerplate metadata warning 008 should warn on lines (.*)$/ do |lines_to_warn| if lines_to_warn.strip == '' expect_no_warning('FC008') else lines_to_warn.split(',').each{|line| expect_warning('FC008', :line => line, :file => 'metadata.rb')} end end Then /the build status should be (successful|failed)$/ do |build_outcome| build_outcome == 'successful' ? assert_no_error_occurred : assert_error_occurred end Then /^the build will (succeed|fail) with (?:no )?warnings(.*)$/ do |build_outcome, warnings| assert_build_result(build_outcome == 'succeed', warnings.gsub(' ', '').split(',')) end Then 'the check for server warning 003 should not be displayed against the condition' do expect_warning("FC003", :line => 5, :expect_warning => false) end Then /^the check for server warning 003 should not be displayed against the search after the (.*) conditional$/ do |format| line = format == 'oneline' ? 2 : 4 expect_warning("FC003", :line => line, :expect_warning => false) end Then 'the check for server warning 003 should not be displayed given we have checked' do expect_warning("FC003", :line => 4, :expect_warning => false) end Then /^the consider adding platform warning 024 should( not)? be shown$/ do |should_not| expect_warning('FC024', :line => should_not.nil? ? @expected_line : nil, :expect_warning => should_not.nil?) end Then /^the conditional block contains only string warning 026 should be (shown|not shown)$/ do |show_warning| expect_warning('FC026', :line => nil, :expect_warning => show_warning == 'shown') end Then /^the current version should( not)? be displayed$/ do |no_display| version_str = "foodcritic #{FoodCritic::VERSION}" if no_display.nil? expect_output(version_str) else expect_no_output(version_str) end end Then /^the debugger breakpoint warning 030 should be (not )?shown against the (.*)$/ do |should_not, component| filename = case component when 'library' then 'libraries/foo.rb' when 'metadata' then 'metadata.rb' when 'provider' then 'providers/foo.rb' when 'recipe' then 'recipes/default.rb' when 'resource' then 'resources/foo.rb' when 'template' then 'templates/default/foo.erb' end expect_warning('FC030', :line => nil, :expect_warning => should_not.nil?, :file => filename) end Then 'the dodgy resource condition warning 022 should not be shown' do expect_warning('FC022', {:line => nil, :expect_warning => false}) end Then /^the warning (\d+) should be (valid|invalid)$/ do |code, valid| code = "FC#{code}" valid == 'valid' ? expect_no_warning(code) : expect_warning(code) end Then /^the incorrect platform usage warning 028 should be (not )?shown$/ do |should_not| expect_warning('FC028', :line => nil, :expect_warning => should_not.nil?) end Then /^the line number and line of code that triggered the warning(s)? should be displayed$/ do |multiple| if multiple.nil? expect_line_shown 2, "log node['foo']" else expect_line_shown 4, " node['testing'] = 'bar'" expect_line_shown 5, " node['testing2'] = 'bar2'" end end Then 'the missing template warning 033 should not be displayed against the template' do expect_warning('FC033', :line => 3, :expect_warning => false) end Then /^the no leading cookbook name warning 029 should be (not )?shown$/ do |should_not| expect_warning('FC029', :line => 1, :expect_warning => should_not.nil?, :file => 'metadata.rb') end Then 'the prefer chef_gem to manual install warning 025 should be shown' do expect_warning('FC025', :line => nil) end Then 'the recipe filename should be displayed' do expect_output "cookbooks/example/recipes/default.rb" end Then /^the resource sets internal attribute warning 027 should be (not )?shown$/ do |should_not| expect_warning('FC027', :line => nil, :expect_warning => should_not.nil?) end Then /^the service resource warning 005 should( not)? be visible$/ do |dont_show| expect_warning('FC005', :line => dont_show ? 2 : 7, :expect_warning => ! dont_show) end Then /^the service resource warning 005 should( not)? be displayed against the first resource in the block$/ do |dont_show| expect_warning('FC005', :line => 2, :expect_warning => ! dont_show) end Then /^the service resource warning 005 should( not)? be shown$/ do |dont_show| expect_warning('FC005', :line => 2, :file_type => :provider, :expect_warning => ! dont_show) end Then /^the simple usage text should be displayed along with a (non-)?zero exit code$/ do |non_zero| usage_displayed(non_zero.nil?) end Then /^the template partials loop indefinitely warning 051 should (not )?be displayed against the templates$/ do |not_shown| expect_warning('FC051', :file => 'templates/default/a.erb', :line => 1, :expect_warning => ! not_shown) expect_warning('FC051', :file => 'templates/default/b.erb', :line => 1, :expect_warning => ! not_shown) end Then 'the undeclared dependency warning 007 should be displayed only for the undeclared dependencies' do expect_warning("FC007", :file => 'recipes/default.rb', :line => 1, :expect_warning => false) expect_warning("FC007", :file => 'recipes/default.rb', :line => 2, :expect_warning => false) expect_warning("FC007", :file => 'recipes/default.rb', :line => 6, :expect_warning => true) end Then /^the unused template variables warning 034 should (not )?be displayed against the (?:inferred )?template(.*)?$/ do |not_shown, ext| file = if ext.empty? 'templates/default/config.conf.erb' else "templates/default/config#{ext.strip}" end expect_warning('FC034', :file => file, :line => 1, :expect_warning => ! not_shown) end Then /^the unrecognised attribute warning 009 should be (true|false)$/ do |shown| shown == 'true' ? expect_warning('FC009') : expect_no_warning('FC009') end Then 'the unrecognised attribute warning 009 should be displayed against the correct resource' do expect_warning('FC009', :line => 7) end Then 'the usage text should include an option for specifying tags that will fail the build' do expect_usage_option('f', 'epic-fail TAGS', "Fail the build if any of the specified tags are matched ('any' -> fail on any match).") end Then /^the warnings shown should be (.*)$/ do |warnings| warnings.split(',').each {|warning| expect_warning(warning, :line => nil)} end When /^I check the cookbook specifying a search grammar that (does not exist|is not in treetop format|is a valid treetop grammar)$/ do |search_grammar| case search_grammar when 'is not in treetop format' write_file('search.treetop', 'I am not a valid treetop grammar') when 'is a valid treetop grammar' write_file('search.treetop', IO.read(FoodCritic::Chef::Search.new.chef_search_grammars.first)) end run_lint(['--search-grammar', 'search.treetop', 'cookbooks/example']) end Then /^the check should abort with an error$/ do assert_error_occurred end Given(/^a cookbook with an? (.*) file with an interpolated name$/) do |file_type| content = %q{ a = "#{node.hostname}" } write_recipe content if file_type == "recipe" write_attributes content if file_type == "attribute" write_metadata content if file_type == "metadata" write_provider "site", content if file_type == "provider" write_resource "site", content if file_type == "resource" write_definition "apache_site", content if file_type == "definition" write_library "lib", content if file_type == "library" end foodcritic-3.0.3/features/042_check_for_deprecated_require_recipe.feature0000644000004100000410000000110512263752452026645 0ustar www-datawww-dataFeature: Check for deprecated require recipe In order to prevent failure of my cookbooks in future versions of Chef As a developer I want to use include_recipe in preference to require_recipe Scenario: Recipe uses require_recipe Given a recipe that uses require_recipe When I check the cookbook Then the require_recipe deprecated warning 042 should be displayed Scenario: Recipe does not use require_recipe Given a recipe that uses include_recipe When I check the cookbook Then the require_recipe deprecated warning 042 should not be displayed foodcritic-3.0.3/features/008_check_for_boilerplate_metadata.feature0000644000004100000410000000230312263752452025627 0ustar www-datawww-dataFeature: Check for boilerplate metadata In order to ensure that recipe metadata is accurate As a developer I want to identify metadata that has not been changed from the generated defaults Scenario: Unmodified knife generated metadata Given a cookbook that has the default boilerplate metadata generated by knife When I check the cookbook Then the boilerplate metadata warning 008 should be displayed against the metadata file Scenario Outline: Boilerplate maintainer metadata Given a cookbook that has maintainer metadata set to and When I check the cookbook Then the boilerplate metadata warning 008 should warn on lines Examples: | maintainer | maintainer_email | lines | | unspecified | unspecified | | | YOUR_COMPANY_NAME | unspecified | 1 | | unspecified | YOUR_EMAIL | 1 | | YOUR_COMPANY_NAME | foo@example.com | 1 | | Example Ltd | YOUR_EMAIL | 2 | | YOUR_COMPANY_NAME | YOUR_EMAIL | 1,2 | | Example Ltd | foo@example.com | | foodcritic-3.0.3/features/026_check_for_conditional_block_string.feature0000644000004100000410000000167112263752452026537 0ustar www-datawww-dataFeature: Check for conditional attribute blocks with only strings In order to avoid wrongly actioning a resource As a developer I want to identify conditional attribute blocks that consist only of strings Scenario Outline: Given a cookbook recipe that declares a resource with a When I check the cookbook Then the conditional block contains only string warning 026 should be Examples: | conditional_attribute | show_warning | | not_if { "ls foo" } | shown | | not_if do "ls foo" end | shown | | only_if { "ls #{node['foo']['path']}" } | shown | | not_if { "ls #{foo.method()}" } | shown | | only_if { foo.bar } | not shown | | not_if { foo.to_s } | not shown | | not_if { File.exists?("/etc/foo") } | not shown | foodcritic-3.0.3/features/034_check_for_unused_template_variables.feature0000644000004100000410000001264612263752452026725 0ustar www-datawww-dataFeature: Check for unused template variables In order to identify failure to parameterise template variables As a developer I want to identify variables passed to templates that are not used Scenario: All variables present in template Given a cookbook template that uses all variables passed When I check the cookbook Then the unused template variables warning 034 should not be displayed Scenario Outline: No variables passed Given a cookbook that passes no variables to a template And the template contains the expression When I check the cookbook Then the unused template variables warning 034 should not be displayed against the template Examples: | expression | | node[:configs][:config_var] | | @config_var | Scenario Outline: Variables passed Given a cookbook that passes variables to a template with extension And the template contains the expression When I check the cookbook Then the unused template variables warning 034 be displayed against the template Examples: | variables | expression | extension | displayed | | config_var | node[:configs][:config_var] | .conf.erb | should | | config_var | @config_var | .conf.erb | should not | | config_var | @config_var['foo'] | .conf.erb | should not | | config_var | node[:configs][:config_var] | .conf.erb | should | | config_var,another_var | node[:configs][:config_var] | .conf.erb | should | | config_var,another_var | @config_var | .conf.erb | should | | config_var,another_var | @another_var | .conf.erb | should | | config_var | @config_var | .conf | should not | | config_var,another_var | @another_var | .conf | should | Scenario Outline: Variables passed with includes Given a cookbook that passes variables to a template with extension And the template contains partial includes of type with the expression When I check the cookbook Then the unused template variables warning 034 be displayed against the template Examples: | variables | expression | type | extension | displayed | | config_var | node[:configs][:config_var] | no parentheses | .conf.erb | should | | config_var | @config_var | no parentheses | .conf.erb | should not | | config_var | @config_var['foo'] | no parentheses | .conf.erb | should not | | config_var | node[:configs][:config_var] | no parentheses | .conf.erb | should | | config_var,another_var | node[:configs][:config_var] | no parentheses | .conf.erb | should | | config_var,another_var | @config_var | no parentheses | .conf.erb | should | | config_var,another_var | @another_var | no parentheses | .conf.erb | should | | config_var | @config_var | no parentheses | .conf | should not | | config_var,another_var | @another_var | no parentheses | .conf | should | | config_var | node[:configs][:config_var] | parentheses | .conf.erb | should | | config_var | @config_var | parentheses | .conf.erb | should not | | config_var | @config_var['foo'] | parentheses | .conf.erb | should not | | config_var | node[:configs][:config_var] | parentheses | .conf.erb | should | | config_var,another_var | node[:configs][:config_var] | parentheses | .conf.erb | should | | config_var,another_var | @config_var | parentheses | .conf.erb | should | | config_var,another_var | @another_var | parentheses | .conf.erb | should | | config_var | @config_var | parentheses | .conf | should not | | config_var,another_var | @another_var | parentheses | .conf | should | | config_var,another_var | @config_var,@another_var | nested | .conf | should not | | config_var,another_var | @config_var | nested | .conf | should | Scenario Outline: Template path is inferred Given a cookbook that passes variables to an inferred template And the inferred template contains the expression When I check the cookbook Then the unused template variables warning 034 be displayed against the inferred template Examples: | variables | expression | displayed | | config_var | node[:configs][:config_var] | should | | config_var | @config_var | should not | Scenario: Template includes contain cycle Given a template that includes a partial that includes the original template again When I check the cookbook Then the unused template variables warning 034 should not be displayed And no error should have occurred foodcritic-3.0.3/features/015_check_for_definitions.feature0000644000004100000410000000206012263752452023776 0ustar www-datawww-dataFeature: Check for use of definitions In order to benefit from the additional features supported by first-class resources As a developer I want to identify when definitions are being used so they can be refactored to become LWRPs Scenario: Cookbook contains definition Given a cookbook that contains a definition When I check the cookbook Then the definitions are deprecated warning 015 should be displayed against the definition file Scenario: Cookbook does not contain a definition - no directory Given a cookbook that does not contain a definition and has no definitions directory When I check the cookbook Then the definitions are deprecated warning 015 should not be displayed against the definition file And no error should have occurred Scenario: Cookbook does not contain a definition - directory Given a cookbook that does not contain a definition and has a definitions directory When I check the cookbook Then the definitions are deprecated warning 015 should not be displayed against the definition file foodcritic-3.0.3/features/012_check_for_deprecated_readme_format.feature0000644000004100000410000000166312263752452026455 0ustar www-datawww-dataFeature: Check for deprecated README format In order to ensure that my cookbook README renders nicely on the Opscode Community site As a developer I want to identify if my cookbook is using an older-style RDoc format that needs converting Scenario: Cookbook missing RDoc formatted README Given a cookbook that does not have a README at all When I check the cookbook Then the deprecated format warning 012 should not be displayed against the README.rdoc file Scenario: Cookbook has RDoc formatted README Given a cookbook that has a README in RDoc format When I check the cookbook Then the deprecated format warning 012 should be displayed against the README.rdoc file Scenario: Cookbook has an alternatively formatted README Given a cookbook that has a README in markdown format When I check the cookbook Then the deprecated format warning 012 should not be displayed against the README.rdoc filefoodcritic-3.0.3/features/024_check_for_missing_platforms.feature0000644000004100000410000000633412263752452025233 0ustar www-datawww-dataFeature: Check for missing platforms In order to maximise the portability of my cookbooks As a developer I want to identify when a recipe misses a popular flavour from a platform family Scenario Outline: Platform flavour missing Given a cookbook recipe with a '' condition for flavours And the cookbook metadata declares support for When I check the cookbook Then the consider adding platform warning 024 Examples: | type | supports | flavours | warning | | case | | chalk,cheese | should not be shown | | case | | debian,ubuntu | should not be shown | | case | | amazon,centos,redhat,scientific | should not be shown | | case | | centos,redhat,amazon,scientific | should not be shown | | case | | centos,debian,fedora,redhat,amazon,scientific | should not be shown | | case | | redhat | should not be shown | | case | | centos,redhat | should be shown | | case | centos,redhat | centos,redhat | should not be shown | | case | | centos,redhat,scientific | should be shown | | case | centos,redhat,scientific | centos,redhat,scientific | should not be shown | | case | centos,debian,scientific | centos,scientific | should not be shown | | case | centos,redhat,scientific | redhat,scientific | should be shown | | case | debian,redhat,centos,fedora | redhat,centos,fedora | should not be shown | | platform? | | centos,redhat,amazon,scientific | should not be shown | | platform? | | redhat | should not be shown | | platform? | | redhat,scientific | should be shown | | platform? | redhat,scientific | redhat,scientific | should not be shown | | platform? | centos,redhat,scientific | centos,scientific | should be shown | Scenario: Supported platforms specifies versions Given a cookbook recipe with a 'case' condition for flavours 'redhat,scientific' And the cookbook metadata declares support with versions specified When I check the cookbook Then the consider adding platform warning 024 should not be shown Scenario: Unrelated case statement Given a cookbook recipe with a case condition unrelated to platform When I check the cookbook Then the consider adding platform warning 024 should not be shown foodcritic-3.0.3/features/051_check_for_template_partial_loops.feature0000644000004100000410000000361512263752452026235 0ustar www-datawww-dataFeature: Check for template partial includes cycle In order to avoid failures at converge time As a developer I want to identify when a template uses partials that would loop Scenario: Template without includes Given a cookbook recipe that refers to a template When I check the cookbook Then the template partials loop indefinitely warning 051 should not be displayed against the templates Scenario: Template includes do not cycle Given a template that includes a partial When I check the cookbook Then the template partials loop indefinitely warning 051 should not be displayed against the templates Scenario: Template includes contain cycle Given a template that includes a partial that includes the original template again When I check the cookbook Then the template partials loop indefinitely warning 051 should be displayed against the templates And no error should have occurred Scenario: Relative partial Given a template that includes a partial with a relative subdirectory path When I check the cookbook Then the template partials loop indefinitely warning 051 should not be displayed against the templates And no error should have occurred Scenario: Missing partial Given a template that includes a missing partial with a relative subdirectory path When I check the cookbook Then the template partials loop indefinitely warning 051 should not be displayed against the templates And no error should have occurred Scenario Outline: Template directory contains binary files Given a template directory that contains a binary file that is not valid UTF-8 When I check the cookbook Then the template partials loop indefinitely warning 051 should not be displayed against the templates And no error should have occurred Examples: | file | | .DS_Store | | foo.erb.swp | foodcritic-3.0.3/features/039_check_for_key_access_to_node_methods.feature0000644000004100000410000000263412263752452027043 0ustar www-datawww-dataFeature: Check for key access to node methods In order to avoid failure at converge time As a developer I want to identify attempts to access node methods as attributes Scenario Outline: Resource actions Given a cookbook recipe that refers to When I check the cookbook Then the node method cannot be accessed with key warning 039 be displayed Examples: | node_access | display | | node['foo'] | should not | | node[:foo] | should not | | node.foo | should not | | node.chef_environment | should not | | node[:chef_environment] | should | | node['chef_environment'] | should | | node.run_state['foo'] | should not | | node.run_state[:foo] | should not | | node.run_state.foo | should not | | node['run_state']['foo'] | should | | node[:run_state][:foo] | should | | node['foo']['run_state'] | should not | | node[:foo][:run_state] | should not | | node['tags'] | should not | | node[:tags] | should not | | node.tags | should not | Scenario: Expressions that look like node access Given a cookbook recipe that has a confusingly named local variable "default" When I check the cookbook Then the node method cannot be accessed with key warning 039 should not be displayed foodcritic-3.0.3/features/019_check_for_consistent_node_access.feature0000644000004100000410000001340612263752452026214 0ustar www-datawww-dataFeature: Check for consistency in node access In order to be consistent in the way I access node attributes As a developer I want to identify if the same cookbook uses varying approaches to accessing node attributes Scenario Outline: Retrieve node attributes Given a cookbook with a single recipe that node attributes via When I check the cookbook Then the attribute consistency warning 019 should be Examples: | accesses | read_access_type | nested | show_warning | | ignores | none | | not shown | | reads | symbols | | not shown | | reads | strings | | not shown | | reads | vivified | | not shown | | reads | strings,symbols | | shown | | reads | strings,vivified | | shown | | reads | symbols,strings | nested | shown | | reads | symbols,vivified | | shown | | reads | vivified,strings | | shown | | reads | vivified,symbols | | shown | | updates | symbols | | not shown | | updates | strings | nested | not shown | | updates | vivified | | not shown | | updates | strings,symbols | | shown | | updates | strings,vivified | nested | shown | | updates | symbols,strings | | shown | | updates | symbols,vivified | | shown | | updates | vivified,strings | | shown | | updates | vivified,symbols | | shown | Scenario: Quoted symbols Given a cookbook with a single recipe that reads node attributes via symbols and quoted_symbols When I check the cookbook Then the attribute consistency warning 019 should be not shown Scenario: Multiple file matches Given a cookbook with five recipes And three of the recipes read node attributes via strings And two of the recipes read node attributes via symbols When I check the cookbook Then the attribute consistency warning 019 should be shown for both of the recipes that use symbols Scenario Outline: Ignore node built-in methods Given a cookbook with a single recipe that node attributes via and calls node. When I check the cookbook Then the attribute consistency warning 019 should be Examples: | accesses | read_access_type | method | show_warning | | reads | strings | platform? | not shown | | reads | symbols | run_list | not shown | | reads | symbols | run_state | not shown | | reads | strings | run_state | not shown | | reads | strings | set | not shown | | reads | strings,symbols | set | shown | Scenario Outline: Ignore method calls on node values Given a cookbook with a single recipe that node attributes via with When I check the cookbook Then the attribute consistency warning 019 should be Examples: | accesses | read_access_type | expression | show_warning | | reads | symbols | node.platform_version | shown | | reads | symbols | node.run_list | not shown | | reads | symbols | node[:foo].chomp | not shown | | reads | symbols | node[:foo][:bar].split(' ').first | not shown | | reads | symbols | node[:foo].bar | not shown | | reads | symbols | foo = node[:foo].bar | not shown | | reads | symbols | node[:foo].each{\|f\| puts f} | not shown | | updates | symbols | node[:foo].strip | not shown | | updates | strings | node[:foo].strip | shown | | updates | strings | foo = node[:foo].strip | shown | | updates | symbols | node['foo'].strip | shown | Scenario: Ignore method calls on patched node values Given a cookbook with a single recipe that calls a patched node method When I check the cookbook Then the attribute consistency warning 019 should be not shown Scenario: Ignore explicit method calls (zero-arg) Given a cookbook with a single recipe that explicitly calls a node method When I check the cookbook Then the attribute consistency warning 019 should be not shown Scenario: Ignore explicit method calls (multiple arguments) Given a cookbook with a single recipe that explicitly calls a node method with multiple arguments When I check the cookbook Then the attribute consistency warning 019 should be not shown Scenario: User hashes Given a cookbook with a single recipe that uses a hash value to access a node attribute When I check the cookbook Then the attribute consistency warning 019 should be not shown Scenario: Interpolated access Given a cookbook with a single recipe that mixes node access types in an interpolated value When I check the cookbook Then the attribute consistency warning 019 should be shown Scenario: Two cookbooks with differing approaches Given a cookbook with a single recipe that reads node attributes via strings only And another cookbook with a single recipe that reads node attributes via symbols only When I check the cookbook tree Then the attribute consistency warning 019 should not be displayed foodcritic-3.0.3/features/044_check_for_bare_attribute_keys.feature0000644000004100000410000000343012263752452025516 0ustar www-datawww-dataFeature: Check for bare attribute keys In order to ensure my cookbook attributes are easily understood As a developer I want to avoid referring to bare attributes Scenario Outline: Cookbook attributes Given a cookbook attributes file that refers to an attribute with When I check the cookbook Then the bare attribute keys warning 044 be displayed against the attributes file Examples: | reference | show_warning | | node['hostname'] | should not | | node[:hostname] | should not | | node.hostname | should not | | hostname | should | | true | should not | | false | should not | | nil | should not | Scenario: Cookbook recipe Given a cookbook recipe that refers to an attribute with a bare keyword When I check the cookbook Then the bare attribute keys warning 044 should not be displayed Scenario: Variable declared in attributes file Given a cookbook attributes file that declares and refers to a local variable When I check the cookbook Then the bare attribute keys warning 044 should not be displayed against the local variable Scenario Outline: Block variable Given a cookbook attributes file with a block that takes arguments When I check the cookbook Then the bare attribute keys warning 044 should not be displayed against the block Examples: | block_type | | do | | brace | Scenario: Attribute set to library method call Given a cookbook attributes file that sets an attribute to be the result of a library call When I check the cookbook Then the bare attribute keys warning 044 should not be displayed against the library call foodcritic-3.0.3/features/individual_file.feature0000644000004100000410000000314412263752452022226 0ustar www-datawww-dataFeature: Individual file In order to get even faster feedback on changes to cookbooks As a developer I want to lint individual files in a cookbook Scenario: Linting an individual recipe shows warnings only from that file Given a cookbook with a single recipe that reads node attributes via symbols,strings And a cookbook that declares normal attributes via symbols When I check the recipe Then the attribute consistency warning 019 should be displayed for the recipe And the attribute consistency warning 019 should not be displayed for the attributes Scenario: Linting an individual role Given a roles directory And it contains a role file webserver.rb that defines the role name "apache" And it contains a role file database.rb that defines the role name "postgresql" When I check the webserver role only Then the role name does not match file name warning 049 should be shown against the webserver role And the role name does not match file name warning 049 should not be shown against the database role Scenario: Linting an individual environment Given an environments directory And it contains an environment file production_eu.rb that defines the environment name "production (eu-west-1)" And it contains an environment file production_us.rb that defines the environment name "production (us-east-1)" When I check the eu environment file only Then the invalid environment name warning 050 should be shown against the eu environment And the invalid environment name warning 050 should not be shown against the us environment foodcritic-3.0.3/features/022_check_for_dodgy_conditions_within_loop.feature0000644000004100000410000000400612263752452027435 0ustar www-datawww-dataFeature: Check for dodgy resource conditions within a loop In order to ensure that resources are declared as intended As a developer I want to identify resource conditions within a loop that will not be re-evaluated Scenario: Resource outside a loop Given a cookbook recipe that declares a resource called "feed_pet" with the condition outside a loop When I check the cookbook Then the dodgy resource condition warning 022 should not be displayed Scenario Outline: Resource within a loop Given a cookbook recipe that declares a resource called with the condition in a loop When I check the cookbook Then the dodgy resource condition warning 022 be displayed Examples: | name | condition | show_warning | | "feed_pet" | | should not | | "feed_pet" | not_if { ::File.exists?("/tmp/fixed-path")} | should not | | "feed_pet" | not_if { ::File.exists?("/tmp/#{pet_name}")} | should | | "feed_pet" | only_if { ::File.exists?("/tmp/#{pet_name}")} | should | | "feed_pet" | only_if { ::File.exists?(pet_name)} | should | | "feed_pet_#{pet_name}" | not_if { ::File.exists?("/tmp/#{pet_name}")} | should not | | "feed_pet" | not_if { ::File.exists?("/tmp/#{unrelated_var}")} | should not | | "feed_pet" | only_if "[ -f \"/tmp/#{pet_name}\" ]" | should | | "feed_pet_#{pet_name}" | not_if "[ -f \"/tmp/#{pet_name}\" ]" | should not | | pet_name | not_if "[ -f \"/tmp/#{pet_name}\" ]" | should not | Scenario: Resource within a multi-arg block Given a resource declared with a guard within a loop with multiple block arguments When I check the cookbook Then the dodgy resource condition warning 022 should not be shown foodcritic-3.0.3/features/build_framework_support.feature0000644000004100000410000001144112263752452024046 0ustar www-datawww-data@build Feature: Build framework support In order to make it as easy as possible to lint my cookbook As a developer I want to be able to invoke the lint tool from my build Scenario: List rake tasks Given a cookbook that has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task with no block When I list the available build tasks Then the lint task will be listed Scenario: List rake tasks - modified name Given a cookbook that has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task specifying a different name When I list the available build tasks Then the lint task will be listed under the different name Scenario Outline: Rakefile with no lint task Given a cookbook that has problems And the cookbook has a Gemfile that includes rake and foodcritic And a Rakefile that defines no lint task When I run the build Then the build will with no warnings Examples: | problems | build_outcome | | no | succeed | | style | succeed | Scenario Outline: Lint task with no block Given a cookbook that has problems And the cookbook has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task with no block When I run the build Then the build will with warnings Examples: | problems | build_outcome | warnings | | no | succeed | | | style | succeed | FC002 | | correctness | fail | FC006 | | style,correctness | fail | FC002,FC006 | Scenario Outline: Lint task with empty block Given a cookbook that has problems And the cookbook has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task with an empty block When I run the build Then the build will with warnings Examples: | problems | build_outcome | warnings | | no | succeed | | | style | succeed | FC002 | | style,correctness | fail | FC002,FC006 | Scenario Outline: Specify rule tags to fail on Given a cookbook that has problems And the cookbook has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task with a block setting options to When I run the build Then the build will with warnings Examples: | problems | options | build_outcome | warnings | | no | | succeed | | | style,correctness | {:fail_tags => []} | succeed | FC002,FC006 | | correctness | {:fail_tags => ['correctness']} | fail | FC006 | | style | {:fail_tags => ['correctness,style']} | fail | FC002 | | style,correctness | {:fail_tags => [], :tags => ['correctness']} | succeed | FC006 | Scenario Outline: Specify paths to lint Given a cookbook that has problems And the cookbook has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task specifying files to lint as When I run the build Then the build will with warnings Examples: | problems | files | build_outcome | warnings | | no | ['recipes/default.rb'] | succeed | | | correctness | ['recipes/default.rb'] | fail | FC006 | | no | ['recipes/default.rb', 'recipes/server.rb'] | succeed | | | correctness | ['recipes/default.rb', 'recipes/server.rb'] | fail | FC006 | Scenario: Exclude tests Given a cookbook that has style problems And the cookbook has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task with no block And unit tests under a top-level test directory When I run the build Then no warnings will be displayed against the tests And the build will succeed with warnings FC002 Scenario: Exclude vendored gems Given a cookbook that has style problems And the cookbook has a Gemfile that includes rake and foodcritic And a Rakefile that defines a lint task with no block And the gems have been vendored When I run the build Then no warnings will be displayed against the tests And the build will succeed with warnings FC002 foodcritic-3.0.3/features/sort_warnings.feature0000644000004100000410000000073312263752452021777 0ustar www-datawww-dataFeature: Sort warnings In order to make it easier to see which lines of my recipe have been flagged with warnings As a developer I want warnings to appear in line order Scenario: Recipe has warnings on lines that don't sort non-numerically Given a cookbook with a single recipe which accesses node attributes with symbols on lines 2 and 10 When I check the cookbook Then the attribute consistency warning 019 should warn on lines 2 and 10 in that order foodcritic-3.0.3/features/010_check_search_syntax.feature0000644000004100000410000000153212263752452023466 0ustar www-datawww-dataFeature: Check for invalid search syntax In order to identify invalid search syntax that will cause my converge to fail As a developer I want to verify that search expressions use valid Lucene syntax Scenario: Invalid search syntax Given a cookbook recipe that attempts to perform a search with invalid syntax When I check the cookbook Then the invalid search syntax warning 010 should be displayed Scenario: Valid search syntax Given a cookbook recipe that attempts to perform a search with valid syntax When I check the cookbook Then the invalid search syntax warning 010 should not be displayed Scenario: Search with subexpression Given a cookbook recipe that attempts to perform a search with a subexpression When I check the cookbook Then the invalid search syntax warning 010 should not be displayed foodcritic-3.0.3/features/include_custom_rules.feature0000644000004100000410000000262512263752452023331 0ustar www-datawww-dataFeature: Include custom rules In order to be able detect cookbook issues that are specific to my organisation As a developer I want to be able to write custom rules and include them in my check Scenario: Valid custom rule Given a cookbook with a single recipe that reads node attributes via strings And I have installed the lint tool When I run it on the command line including a custom rule file containing a rule that matches Then a warning for the custom rule should be displayed Scenario: Valid custom rules (directory) Given a cookbook with a single recipe that reads node attributes via strings And I have installed the lint tool When I run it on the command line including a custom rule directory containing a rule that matches Then a warning for the custom rule should be displayed Scenario: Missing file Given a cookbook with a single recipe that reads node attributes via strings And I have installed the lint tool When I run it on the command line including a missing custom rule file Then a 'No such file or directory' error should be displayed Scenario: Non-ruby file Given a cookbook with a single recipe that reads node attributes via strings And I have installed the lint tool When I run it on the command line including a file which does not contain Ruby code Then an 'undefined method' error should be displayed foodcritic-3.0.3/features/limit_rules_to_specific_versions.feature0000644000004100000410000000607212263752452025731 0ustar www-datawww-dataFeature: Limit rules to specific versions In order to not be shown warnings that do not apply to my version of Chef As a developer I want to be able to specify the version of Chef I am using Scenario: Rule with no version constraint - no version specified Given a rule that does not declare a version constraint And a cookbook that matches that rule When I check the cookbook without specifying a Chef version Then the warning should be displayed Scenario Outline: Rule with no version constraint - specifying version Given a rule that does not declare a version constraint And a cookbook that matches that rule When I check the cookbook specifying as the Chef version Then the warning should be displayed Examples: | version | | 0.10.10.beta.1 | | 0.10.8 | | 0.10.6 | | 0.10.6.rc.5 | | 0.10.6.beta.3 | | 0.10.4 | | 0.10.2 | | 0.10.0 | | 0.9.18 | Scenario: Rule with version constraint - no version specified Given a rule that declares a version constraint And the current stable version of Chef falls within it And a cookbook that matches that rule When I check the cookbook without specifying a Chef version Then the warning should be displayed Scenario: Rule with version constraint - no version specified Given a rule that declares a version constraint And the current stable version of Chef does not fall within it And a cookbook that matches that rule When I check the cookbook without specifying a Chef version Then the warning should not be displayed Scenario Outline: Rule with version constraint - specifying version Given a rule that declares a version constraint of to And a cookbook that matches that rule When I check the cookbook specifying as the Chef version Then the warning Examples: | version | from_version | to_version | warning | | 0.10.10.beta.1 | 0.10.10 | | should not be displayed | | 0.10.10 | 0.10.10 | | should be displayed | | 0.10.8 | 0.10.10 | | should not be displayed | | 0.10.6.rc.5 | 0.10.8 | | should not be displayed | | 0.10.6.rc.5 | 0.10.6 | | should not be displayed | | 0.10.4 | 0.9.14 | | should be displayed | | 0.10.4 | 0.10.10 | | should not be displayed | | 0.10.8 | 0.9.18 | 0.10.6 | should not be displayed | | 0.10.6 | 0.9.18 | 0.10.6 | should be displayed | | 0.9.18 | 0.9.18 | 0.10.6 | should be displayed | | 0.9.14 | 0.9.18 | 0.10.6 | should not be displayed | | 0.9.14 | | 0.10.6 | should be displayed | | 0.9.14 | | 0.9.12 | should not be displayed | foodcritic-3.0.3/features/037_check_for_invalid_notification_action.feature0000644000004100000410000000267012263752452027227 0ustar www-datawww-dataFeature: Check for invalid notification actions In order to flag invalid notifications more quickly As a developer I want to identify notifications that have an action which is invalid for the notified resource Scenario Outline: Notification actions Given a cookbook recipe with a resource that notifies a to When I check the cookbook Then the invalid notification action warning 037 be displayed Examples: | resource | action | display | | service | restart | should not | | service | nothing | should not | | service | create | should | | execute | run | should not | | execute | execute | should | Scenario Outline: Subscription actions Given a cookbook recipe with a resource that subscribes to when notified by a remote_file When I check the cookbook Then the invalid notification action warning 037 be displayed Examples: | source | action | display | | service | restart | should not | | service | nothing | should not | | service | create | should | | execute | run | should not | | execute | execute | should | Scenario: Notification action is an expression Given a cookbook recipe with a resource that notifies where the action is an expression When I check the cookbook Then the invalid notification action warning 037 should not be displayed foodcritic-3.0.3/features/choose_rules_to_apply.feature0000644000004100000410000000565712263752452023513 0ustar www-datawww-dataFeature: Choose rules to apply In order to remove warnings that are not appropriate for my usage of Chef As a developer I want to be able to filter the rules applied based on tags associated with each rule Scenario Outline: Specified tags on command line Given a cookbook that matches rules When I check the cookbook specifying tags Then the warnings shown should be Examples: | cookbook_matches | tag_arguments | warnings_shown | | FC002,FC003,FC004 | | FC002,FC003,FC004 | | FC002 | -t FC002 | FC002 | | FC002,FC003,FC004 | --tags FC002 | FC002 | | FC002,FC003,FC004 | --tags fc002 | | | FC002,FC003,FC004 | --tags FC005 | | | FC002,FC003,FC004 | --tags ~FC002 | FC003,FC004 | | | --tags FC002 | | | FC002,FC003,FC004 | --tags @FC002 | | | FC002,FC003,FC004 | --tags style | FC002,FC004 | | FC002,FC003,FC004 | --tags FC002 --tags FC003 | | | FC002,FC003,FC004 | --tags style --tags services | FC004 | | FC002,FC003,FC004 | --tags style,services | FC002,FC004 | Scenario Outline: Specified tags in cookbook .foodcritic file Given a cookbook that matches rules When the cookbook directory has a .foodcritic file specifying tags And I check the cookbook specifying tags Then the warnings shown should be Examples: | cookbook_matches | tag_file | tag_arguments | warnings_shown | | FC002,FC003,FC004 | | | FC002,FC003,FC004 | | FC002 | FC002 | | FC002 | | FC002 | ~FC002 | --tags FC002 | FC002 | | FC002 | fc002 | | | | FC002,FC003,FC004 | FC005 | | | | FC002,FC003,FC004 | FC005 | -t FC002 | FC002 | | FC002,FC003,FC004 | FC002 | -t FC003 | FC003 | | FC002,FC003,FC004 | ~FC002 | | FC003,FC004 | | FC002,FC003,FC004 | ~FC002 | -t FC002,FC003 | FC002,FC003 | | | FC002 | | | | FC002,FC003,FC004 | @FC002 | | | | FC002,FC003,FC004 | style | | FC002,FC004 | | FC002,FC003,FC004 | FC002 FC003 | | | | FC002,FC003,FC004 | style,services | | FC002,FC004 | foodcritic-3.0.3/features/multiple_paths.feature0000644000004100000410000000377312263752452022141 0ustar www-datawww-dataFeature: Multiple paths In order to avoid needing to run foodcritic multiple times As a developer I want to lint multiple paths at once Scenario Outline: Linting multiple individual cookbooks Given a cookbook with a single recipe that reads node attributes via symbols,strings And another cookbook with a single recipe that reads node attributes via strings When I check both cookbooks with the command-line Then the attribute consistency warning 019 should be shown Examples: | command_line | | example another_example | | -B example -B another_example | | --cookbook-path example --cookbook-path another_example | | -B example another_example | | --cookbook-path example another_example | | -B example --cookbook-path another_example | Scenario: Linting multiple role directories Given two roles directories And each role directory has a role with a name that does not match the containing file name When I check both roles directories Then the role name does not match file name warning 049 should be shown against the files in both directories Scenario: Linting a cookbook, role and environment together Given a cookbook with a single recipe that reads node attributes via symbols,strings And another cookbook with a single recipe that reads node attributes via strings And a directory that contains a role file webserver.rb in ruby that defines role name apache And a directory that contains an environment file production.rb in ruby that defines environment name production (us-east) When I check the cookbooks, role and environment together Then the attribute consistency warning 019 should be shown And the role name does not match file name warning 049 should be shown And the invalid environment name warning 050 should be shown foodcritic-3.0.3/features/show_lines_matched.feature0000644000004100000410000000204512263752452022735 0ustar www-datawww-data@context Feature: Show Lines Matched In order to understand more quickly the reason for a warning As a developer I want to be able to see the lines the warning matches against, with context Scenario: Recipe with a single warning Given a cookbook with a single recipe that reads node attributes via symbols,strings When I check the cookbook, specifying that context should be shown Then the recipe filename should be displayed And the attribute consistency warning 019 should be displayed below And the line number and line of code that triggered the warning should be displayed Scenario: Recipe with a multiple warnings of the same type Given a cookbook with a single recipe that reads multiple node attributes via symbols,strings When I check the cookbook, specifying that context should be shown Then the recipe filename should be displayed And the attribute consistency warning 019 should be displayed below And the line number and line of code that triggered the warnings should be displayed foodcritic-3.0.3/features/050_check_for_invalid_name.feature0000644000004100000410000000242012263752452024110 0ustar www-datawww-dataFeature: Check for invalid names In order to identify issues more quickly As a developer I want to identify roles or environments whose names are invalid Scenario Outline: Role name validity Given a ruby role file that defines a role with name When I check the role directory Then the invalid role name warning 050 be shown Examples: | role_name | show_warning | | webserver | should not | | web_server | should not | | web-server | should not | | webserver123 | should not | | Webserver | should not | | web server | should | | webserver% | should | Scenario Outline: Environment name validity Given a ruby environment file that defines an environment with name When I check the environment directory Then the invalid environment name warning 050 be shown Examples: | environment_name | show_warning | | production | should not | | pre_production | should not | | production-eu | should not | | production2 | should not | | Production | should not | | EU West | should | | production (eu-west) | should | foodcritic-3.0.3/features/017_check_for_no_lwrp_notifications.feature0000644000004100000410000000461312263752452026104 0ustar www-datawww-dataFeature: Check for no LWRP notifications In order to ensure resource actions are triggered as expected As a developer I want to identify when a LWRP does not trigger notifications Scenario: LWRP with no notifications Given a cookbook that contains a LWRP that does not trigger notifications When I check the cookbook Then the LWRP does not notify when updated warning 017 should be displayed against the provider file Scenario: LWRP with a notification Given a cookbook that contains a LWRP with a single notification When I check the cookbook Then the LWRP does not notify when updated warning 017 should not be displayed against the provider file Scenario: LWRP with a notification without parentheses Given a cookbook that contains a LWRP with a single notification without parentheses When I check the cookbook Then the LWRP does not notify when updated warning 017 should not be displayed against the provider file Scenario: LWRP with multiple notifications Given a cookbook that contains a LWRP with multiple notifications When I check the cookbook Then the LWRP does not notify when updated warning 017 should not be displayed against the provider file Scenario Outline: LWRP using converge_by Given a cookbook that contains a LWRP that uses converge_by - block parentheses When I check the cookbook Then the LWRP does not notify when updated warning 017 should not be displayed against the provider file Examples: | block_type | with_parens | | brace | with | | do | with | | do | without | Scenario: LWRP using use_inline_resources Given a cookbook that contains a LWRP that uses use_inline_resources When I check the cookbook Then the LWRP does not notify when updated warning 017 should not be displayed against the provider file Scenario Outline: Warnings raised for actions individually Given a LWRP with an action :create that notifies with and another :delete that does not notify When I check the cookbook Then the LWRP does not notify when updated warning 017 should not be shown against the :create action And the LWRP does not notify when updated warning 017 should be shown against the :delete action Examples: | notify_type | | converge_by | | updated_by_last_action | foodcritic-3.0.3/features/025_check_for_deprecated_gem_install.feature0000644000004100000410000000312412263752452026144 0ustar www-datawww-dataFeature: Check for deprecated gem install In order to be clear and concise in my Chef recipes As a developer I want to use chef_gem in preference to manual compile-time gem install Scenario: Normal gem install Given a cookbook recipe that installs a gem When I check the cookbook specifying 0.10.10 as the Chef version Then the prefer chef_gem to manual install warning 025 should not be displayed Scenario: Compile-time gem install Given a cookbook recipe that installs a gem at compile time using the deprecated syntax When I check the cookbook specifying 0.10.10 as the Chef version Then the prefer chef_gem to manual install warning 025 should be shown Scenario: Compile-time gem upgrade Given a cookbook recipe that upgrades a gem at compile time using the deprecated syntax When I check the cookbook specifying 0.10.10 as the Chef version Then the prefer chef_gem to manual install warning 025 should be shown Scenario: Compile-time gem install - multiple from array Given a cookbook recipe that installs multiple gems from an array at compile time using the deprecated syntax When I check the cookbook specifying 0.10.10 as the Chef version Then the prefer chef_gem to manual install warning 025 should be shown Scenario: Compile-time gem install - multiple from wordlist Given a cookbook recipe that installs multiple gems from a word list at compile time using the deprecated syntax When I check the cookbook specifying 0.10.10 as the Chef version Then the prefer chef_gem to manual install warning 025 should be shown foodcritic-3.0.3/features/009_check_for_unrecognised_resource_attributes.feature0000644000004100000410000000665412263752452030345 0ustar www-datawww-dataFeature: Check for unrecognised resource attributes In order to identify typos in recipes without the need for a converge As a developer I want to identify use of standard resources with unrecognised attributes Scenario Outline: Unrecognised attribute declared on built-in resource Given a recipe that declares a resource with these attributes: When I check the cookbook Then the unrecognised attribute warning 009 should be Examples: | type | attributes | shown | | file | punter,group,mode,action | true | | file | owner,group,rights,action | false | | file | owner,group,mode,action | false | | file | action,retries | false | | group | gid | false | | group | gid,membranes | true | | package | version,action,options | false | | package | verison,action,options | true | Scenario: Resource declared using recognised attributes Given a recipe that declares a resource with standard attributes When I check the cookbook Then the unrecognised attribute warning 009 should not be displayed Scenario: LWRP Resource Given a recipe that declares a user-defined resource When I check the cookbook Then the unrecognised attribute warning 009 should not be displayed And no error should have occurred Scenario: Resource declared with only a name attribute Given a recipe that declares a resource with only a name attribute When I check the cookbook Then the unrecognised attribute warning 009 should not be displayed Scenario: Unrecognised attribute on recipe with multiple resources of the same type Given a recipe that declares multiple resources of the same type of which one has a bad attribute When I check the cookbook Then the unrecognised attribute warning 009 should be displayed against the correct resource Scenario: Resource with conditional attributes Given a recipe that declares a resource with recognised attributes and a conditional execution ruby block When I check the cookbook Then the unrecognised attribute warning 009 should not be displayed Scenario: Resource with nested block Given a recipe that declares a resource with recognised attributes and a nested block When I check the cookbook Then the unrecognised attribute warning 009 should not be displayed Scenario: Resource with attribute method call Given a recipe that declares a resource with an attribute value set to the result of a method call When I check the cookbook Then the unrecognised attribute warning 009 should not be displayed Scenario Outline: Install package with yum specifying architecture Given a recipe that installs a package with yum specifying the architecture When I check the cookbook specifying as the Chef version Then the unrecognised attribute warning 009 should be Examples: | version | shown | | 0.8.14 | true | | 0.9.6 | true | | 0.9.8 | false | Scenario Outline: Retry a resource on failure Given a recipe that installs a gem with 5 retries When I check the cookbook specifying as the Chef version Then the unrecognised attribute warning 009 should be Examples: | version | shown | | 0.8.16 | true | | 0.9.0 | true | | 0.10.2 | true | | 0.10.4 | false | foodcritic-3.0.3/features/049_check_for_role_name_mismatch_with_file_name.feature0000644000004100000410000000325112263752452030355 0ustar www-datawww-dataFeature: Identify roles names that do not match filenames In order to avoid confusion As a developer I want to identify roles whose names differ from their filename Scenario Outline: Illustrates role paths Given a directory that contains a role file in that defines role name When I check the role directory as a path Then the role name does not match file name warning 049 be shown Examples: | filename | format | role_name | path_type | show_warning | | webserver.rb | ruby | webserver | role | should not | | webserver.rb | ruby | apache | role | should | | webserver.json | json | webserver | role | should not | | webserver.json | json | apache | role | should not | | webserver.rb | ruby | webserver | cookbook | should not | | webserver.rb | ruby | apache | cookbook | should not | | webserver.rb | ruby | webserver | default | should not | | webserver.rb | ruby | apache | default | should not | Scenario: Role name references variable Given a directory that contains a ruby role with an expression as its name When I check the role directory Then the role name does not match file name warning 049 should not be shown Scenario: Multiple role names declared Given a directory that contains a ruby role that declares the role name more than once And the last role name declared does not match the containing filename When I check the role directory Then the role name does not match file name warning 049 should be shown against the second name foodcritic-3.0.3/features/046_check_for_assign_unless_nil_attributes.feature0000644000004100000410000000207012263752452027455 0ustar www-datawww-dataFeature: Check for attributes using assign unless nil In order to avoid attributes being assigned unexpected values As a developer I want to identify attributes that attempt to use assign unless nil (||=) Scenario Outline: Attribute assignments Given a cookbook attributes file with assignment When I check the cookbook Then the attribute assignment uses assign unless nil warning 046 be displayed against the attributes file Examples: | assignment | show_warning | | default['somevalue'] = [] | should not | | default['somevalue'] = foo \|\| bar | should not | | default['somevalue'] \|\|= [] | should | | default[:somevalue] = [] | should not | | default[:somevalue] = foo \|\| bar | should not | | default[:somevalue] \|\|= [] | should | | default.somevalue = [] | should not | | default.somevalue = foo \|\| bar | should not | | default.somevalue \|\|= [] | should | foodcritic-3.0.3/features/030_check_for_debugger_breakpoints.feature0000644000004100000410000000210212263752452025642 0ustar www-datawww-dataFeature: Check for debugger breakpoints In order to avoid halting a converge As a developer I want to identify debugger breakpoints that have not been removed Scenario Outline: Debugger breakpoints Given a cookbook with a that a breakpoint When I check the cookbook Then the debugger breakpoint warning 030 should be against the Examples: | component | includes | show_warning | | library | does not include | not shown | | library | includes | shown | | metadata | does not include | not shown | | metadata | includes | shown | | provider | does not include | not shown | | provider | includes | shown | | recipe | does not include | not shown | | recipe | includes | shown | | resource | does not include | not shown | | resource | includes | shown | | template | does not include | not shown | | template | includes | shown | foodcritic-3.0.3/features/011_check_for_markdown_readme.feature0000644000004100000410000000161712263752452024625 0ustar www-datawww-dataFeature: Check for markdown readme In order to ensure that my cookbook README renders nicely on the Opscode Community site As a developer I want to identify if my cookbook does not have a markdown formatted README Scenario: Cookbook missing markdown formatted README Given a cookbook that does not have a README at all When I check the cookbook Then the missing readme warning 011 should be displayed against the README.md file Scenario: Cookbook has markdown formatted README Given a cookbook that has a README in markdown format When I check the cookbook Then the missing readme warning 011 should not be displayed against the README.md file Scenario: Cookbook has an alternatively formatted README Given a cookbook that has a README in RDoc format When I check the cookbook Then the missing readme warning 011 should be displayed against the README.md filefoodcritic-3.0.3/features/032_check_for_invalid_notification_timing.feature0000644000004100000410000000200712263752452027226 0ustar www-datawww-dataFeature: Check for invalid notification timings In order to flag invalid notifications more quickly As a developer I want to identify notifications that have an invalid timing type Scenario Outline: Notification timings Given a cookbook recipe with a resource that When I check the cookbook Then the invalid notification timing warning 032 be displayed Examples: | type | notification_timing | display | | notifies | | should not | | notifies | immediately | should not | | notifies | immediate | should not | | notifies | delayed | should not | | notifies | imediately | should | | subscribes | | should not | | subscribes | immediately | should not | | subscribes | immediate | should not | | subscribes | delayed | should not | | subscribes | imediately | should | foodcritic-3.0.3/features/048_check_for_shellout.feature0000644000004100000410000000324412263752452023335 0ustar www-datawww-dataFeature: Check for spawning without Mixlib::ShellOut In order to work more easily with spawned processes As a developer I want to use the Mixlib::ShellOut library rather than basic ruby constructs Scenario Outline: Spawning a sub-process Given a cookbook recipe that spawns a sub-process with When I check the cookbook Then the prefer mixlib shellout warning 048 be displayed Examples: | command | show_warning | | `ls` | should | | `#{cmd}` | should | | %x{ls} | should | | %x[ls] | should | | %x{#{cmd} some_dir} | should | | %x{#{cmd} some_dir} | should | | system "ls" | should | | system("ls") | should | | system cmd | should | | system(cmd) | should | | system("#{cmd} some_dir") | should | | Mixlib::ShellOut.new('ls').run_command | should not | Scenario: Execute resource Given a cookbook recipe that executes 'ls' with an execute resource When I check the cookbook Then the prefer mixlib shellout warning 048 should not be displayed Scenario: Group resource Given a cookbook recipe that contains a group resource that uses the 'system' attribute When I check the cookbook Then the prefer mixlib shellout warning 048 should not be displayed against the group resource foodcritic-3.0.3/features/033_check_for_missing_template.feature0000644000004100000410000000426012263752452025033 0ustar www-datawww-dataFeature: Check for missing template In order to ensure the Chef run is successful As a developer I want to identify template resources that refer to missing templates Scenario Outline: Template types Given a cookbook recipe that When I check the cookbook Then the missing template warning 033 Examples: | template_type | warning | | defines a template where both the name and source are complex expressions | should not be displayed | | defines a template where name and source are both simple expressions | should not be displayed | | defines a template where name is a complex expression | should not be displayed | | infers a template with an expression | should not be displayed | | refers to a hidden template | should not be displayed | | refers to a local template | should not be displayed | | refers to a missing template | should be displayed | | refers to a template in a subdirectory | should not be displayed | | refers to a template | should not be displayed | | refers to a template with an expression | should not be displayed | | refers to a template without an erb extension | should not be displayed | | uses a missing inferred template | should be displayed | | uses an inferred template | should not be displayed | | uses a template from another cookbook | should not be displayed | Scenario: Template within deploy resource Given a cookbook recipe with a deploy resource that contains a template resource When I check the cookbook Then the missing template warning 033 should not be displayed against the template foodcritic-3.0.3/features/014_check_for_long_ruby_blocks.feature0000644000004100000410000000214712263752452025025 0ustar www-datawww-dataFeature: Check for overly long ruby blocks In order to keep my cookbooks readable As a developer I want to identify if ruby blocks in my recipes are too long and should be extracted to libraries Scenario: No ruby blocks Given a cookbook that contains no ruby blocks When I check the cookbook Then the long ruby block warning 014 should not be displayed Scenario: Short ruby block Given a cookbook that contains a short ruby block When I check the cookbook Then the long ruby block warning 014 should not be displayed Scenario: Long ruby block Given a cookbook that contains a long ruby block When I check the cookbook Then the long ruby block warning 014 should be displayed Scenario: Multiple ruby blocks Given a recipe that contains both long and short ruby blocks When I check the cookbook Then the long ruby block warning 014 should be displayed against the long block only Scenario: Missing block attribute Given a recipe that contains a ruby block without a block attribute When I check the cookbook Then no error should have occurred foodcritic-3.0.3/features/004_check_service_resource_used.feature0000644000004100000410000000463512263752452025214 0ustar www-datawww-dataFeature: Check for service commands within execute resources In order to control services in an idiomatic way As a developer I want to identify if service commands are called by execute resources rather than using the service resource Scenario: Execute resource starting a service via init.d Given a cookbook recipe that uses execute to start a service via init.d When I check the cookbook Then the service resource warning 004 should be displayed Scenario Outline: Execute resource controlling a service via the service command Given a cookbook recipe that uses execute to a service via the service command When I check the cookbook Then the service resource warning 004 Examples: | action | warning | | start | should be displayed | | stop | should be displayed | | restart | should be displayed | | reload | should be displayed | | initdb | should not be displayed | Scenario: Execute resource starting a service via upstart Given a cookbook recipe that uses execute to start a service via upstart When I check the cookbook Then the service resource warning 004 should be displayed Scenario: Execute resource starting a service via invoke-rc.d Given a cookbook recipe that uses execute to start a service via invoke-rc.d When I check the cookbook Then the service resource warning 004 should be displayed Scenario: Execute resource starting a service via the full path to the service command Given a cookbook recipe that uses execute to start a service via the full path to the service command When I check the cookbook Then the service resource warning 004 should be displayed Scenario: Execute resource starting a service via init.d (multiple commands) Given a cookbook recipe that uses execute to sleep and then start a service via init.d When I check the cookbook Then the service resource warning 004 should be displayed Scenario: Execute resource not controlling a service Given a cookbook recipe that uses execute to list a directory When I check the cookbook Then the service resource warning 004 should not be displayed Scenario: Execute resource using name attribute Given a cookbook recipe that uses execute with a name attribute to start a service When I check the cookbook Then the service resource warning 004 should be displayed foodcritic-3.0.3/features/continuous_integration_support.feature0000644000004100000410000000410412263752452025501 0ustar www-datawww-dataFeature: Continuous Integration Support In order to be able to quickly identify problems with my cookbooks As a developer I want to be able to fail the build for a subset of warnings Scenario: Command help Given I have installed the lint tool When I run it on the command line with the help option Then the usage text should include an option for specifying tags that will fail the build Scenario Outline: Fail the build for certain tags Given a cookbook that matches rules When I check the cookbook specifying tags Then the warnings shown should be And the build status should be Examples: | cookbook_matches | tag_arguments | warnings_shown | build_status | | FC002,FC003,FC004 | | FC002,FC003,FC004 | successful | | FC002,FC003,FC004 | -t style | FC002,FC004 | successful | | FC002,FC003,FC004 | -f style | FC002,FC003,FC004 | failed | | FC002,FC003,FC004 | -f FC005 | FC002,FC003,FC004 | successful | | FC002,FC003,FC004 | -f FC003,FC004 | FC002,FC003,FC004 | failed | | FC002,FC003,FC004 | --epic-fail FC003 | FC002,FC003,FC004 | failed | | FC002,FC003 | -f any | FC002,FC003 | failed | | FC002,FC003 | -f any -f ~FC014 | FC002,FC003 | failed | | FC002,FC003 | -f any,~FC014 | FC002,FC003 | failed | | FC002 | -f ~FC002 | FC002 | successful | | FC002,FC003 | -f ~FC002 | FC002,FC003 | failed | | FC002,FC003 | -f any -f ~FC002 | FC002,FC003 | failed | | FC002 | -f any,~FC002 | FC002 | failed | | FC002 | -f any -f ~FC002 | FC002 | successful | | FC002,FC003 | -f any,~FC002 | FC002,FC003 | failed | | FC002,FC003 | -f ~FC002 -f ~FC004 | FC002,FC003 | failed | foodcritic-3.0.3/features/023_check_for_condition_around_resource.feature0000644000004100000410000000553512263752452026741 0ustar www-datawww-dataFeature: Check for condition around resource In order to express conditions in a idiomatic way As a developer I want to identify resources nested in a condition that would be better expressed as a conditional attribute Scenario: No conditions Given a cookbook recipe that declares a resource with no conditions at all When I check the cookbook Then the prefer conditional attributes warning 023 should not be displayed Scenario Outline: Resource wrapped in condition Given a cookbook recipe that declares a resource nested in a condition with When I check the cookbook Then the prefer conditional attributes warning 023 Examples: | wrapping_condition | condition_attribute | warning | | if | no condition attribute | should be displayed | | unless | no condition attribute | should be displayed | | if_else | no condition attribute | should not be displayed | | unless_else | no condition attribute | should not be displayed | | if_elsif | no condition attribute | should not be displayed | | if_elsif_else | no condition attribute | should not be displayed | | if | only_if block | should not be displayed | | if | only_if string | should not be displayed | | unless | only_if block | should not be displayed | | unless | only_if string | should not be displayed | | if | not_if block | should not be displayed | | if | not_if string | should not be displayed | | unless | not_if block | should not be displayed | | unless | not_if string | should not be displayed | Scenario: Wrapped condition includes Ruby statements Given a cookbook recipe that has a wrapping condition containing a resource with no condition attribute and a Ruby statement When I check the cookbook Then the prefer conditional attributes warning 023 should not be displayed Scenario: Wrapped condition includes resource in a loop Given a cookbook recipe that has a wrapping condition containing a resource with no condition attribute within a loop When I check the cookbook Then the prefer conditional attributes warning 023 should not be displayed Scenario Outline: Multiple nested resources Given a cookbook recipe that declares multiple resources nested in a condition with no condition attribute When I check the cookbook Then the prefer conditional attributes warning 023 should not be displayed Examples: | wrapping_condition | | if | | unless | foodcritic-3.0.3/features/047_check_for_attribute_assignment_without_precedence.feature0000644000004100000410000000472612263752452031676 0ustar www-datawww-dataFeature: Check for attribute assignment without specified precedence In order to ensure that my cookbooks continue to work with Chef 11+ As a developer I want to identify node attribute assignment that does not specify the attribute precedence Scenario Outline: Attribute assignment Given a cookbook attributes file with assignment When I check the cookbook Then the attribute assignment without precedence warning 047 be displayed against the attributes file Examples: | assignment | show_warning | | node[:foo] = 'bar' | should | | node['foo'] = 'bar' | should | | node['foo'] = a_var | should | | a_var = node['foo'] | should not | | node['foo']['bar'] = 'baz' | should | | node['foo']['bar']['baz'] = 'fizz' | should | | node.foo = 'bar' | should | | node.normal.foo = 'bar' | should not | | node.normal['foo'] = 'bar' | should not | | node.default['foo'] = 'bar' | should not | | node.force_default['foo'] = 'bar' | should not | | node.set['foo'] = 'bar' | should not | | node.override['foo'] = 'bar' | should not | | node.force_override['foo'] = 'bar' | should not | | node.automatic_attrs['foo'] = 'bar' | should not | | node['foos'] << 'bar' | should | | node['foo']['bars'] << 'baz' | should | | foo = node['bar'] | should not | | baz << node['foo']['bars'] | should not | | node.run_state['foo'] = bar | should not | | foo[:bar] << node['baz'] | should not | | node.default['foo'] << bar | should not | | node.default_unless['foo'] = 'bar' | should not | | node.normal_unless['foo'] = 'bar' | should not | | node.set_unless['foo'] = 'bar' | should not | | node.override_unless['foo'] = 'bar' | should not | Scenario Outline: Attribute assignment in recipe Given a cookbook recipe file with assignment When I check the cookbook Then the attribute assignment without precedence warning 047 be displayed Examples: | assignment | show_warning | | node[:foo] = 'bar' | should | | node.normal['foo'] = 'bar' | should not | foodcritic-3.0.3/features/command_line_help.feature0000644000004100000410000000516612263752452022542 0ustar www-datawww-dataFeature: Command line help In order to be able to learn about the options available for checking my cookbooks As a developer I want to be able to interactively get help on the options from the command line Scenario: No arguments Given I have installed the lint tool When I run it on the command line with no arguments Then the simple usage text should be displayed along with a non-zero exit code Scenario: Non-existent cookbook directory Given I have installed the lint tool When I run it on the command line specifying a cookbook that does not exist Then the simple usage text should be displayed along with a non-zero exit code Scenario: Non-existent role directory Given I have installed the lint tool When I run it on the command line specifying a role directory that does not exist Then the simple usage text should be displayed along with a non-zero exit code Scenario: Non-existent environment directory Given I have installed the lint tool When I run it on the command line specifying an environment directory that does not exist Then the simple usage text should be displayed along with a non-zero exit code Scenario: Command help Given I have installed the lint tool When I run it on the command line with the help option Then the simple usage text should be displayed along with a zero exit code Scenario: Display version Given I have installed the lint tool When I run it on the command line with the version option Then the current version should be displayed Scenario: Future verbose option Given I have installed the lint tool When I run it on the command line with the unimplemented verbose option Then the simple usage text should be displayed along with a non-zero exit code Scenario: Unimplemented option Given I have installed the lint tool When I run it on the command line with the unimplemented -Z option Then the simple usage text should be displayed along with a non-zero exit code Scenario: Future verbose option plus arguments Given a cookbook that has style problems And I have installed the lint tool When I run it on the command line with the unimplemented -v option with an argument Then the simple usage text should be displayed along with a non-zero exit code Then the style warning 002 should not be displayed And the current version should not be displayed Scenario: Refer to the man page Given access to the man page documentation When I compare the man page options against the usage options Then all options should be documented in the man page foodcritic-3.0.3/features/003_check_for_chef_server.feature0000644000004100000410000000535712263752452023767 0ustar www-datawww-dataFeature: Check for Chef Server In order to ensure my cookbooks can be run with chef solo As a developer I want to identify if server-only features are used without checking to see if this is server Scenario: Search without checking for server Given a cookbook with a single recipe that searches without checking if this is server When I check the cookbook Then the check for server warning 003 should be displayed Scenario: Search with older chef-solo-search Given a cookbook with a single recipe that searches without checking if this is server And another cookbook that has an older chef-solo-search installed When I check the cookbook Then the check for server warning 003 should not be displayed Scenario: Search with chef-solo-search Given a cookbook with a single recipe that searches without checking if this is server And another cookbook that has chef-solo-search installed When I check the cookbook Then the check for server warning 003 should not be displayed Scenario: Search checking for server Given a cookbook with a single recipe that searches but checks first to see if this is server When I check the cookbook Then the check for server warning 003 should not be displayed given we have checked Scenario: Search checking for server (unless) Given a cookbook with a single recipe that searches but checks with a negative first to see if this is server When I check the cookbook Then the check for server warning 003 should not be displayed given we have checked Scenario: Search checking for server (string access) Given a cookbook with a single recipe that searches but checks first (string) to see if this is server When I check the cookbook Then the check for server warning 003 should not be displayed given we have checked Scenario: Search checking for server (method access) Given a cookbook with a single recipe that searches but checks first (method) to see if this is server When I check the cookbook Then the check for server warning 003 should not be displayed given we have checked Scenario: Search checking for server (alternation) Given a cookbook with a single recipe that searches but checks first (alternation) to see if this is server When I check the cookbook Then the check for server warning 003 should not be displayed against the condition Scenario Outline: Search checking for server (return) Given a cookbook with a single recipe that searches but returns first () if search is not supported When I check the cookbook Then the check for server warning 003 should not be displayed against the search after the conditional Examples: | format | | oneline | | multiline | foodcritic-3.0.3/features/checking_all_types_of_file.feature0000644000004100000410000000317312263752452024413 0ustar www-datawww-dataFeature: Checking all types of files In order to run foodcritic rules As a developer I want to be able to check all types of files Scenario: Checking recipe Given a cookbook with a recipe file with an interpolated name When I check the cookbook Then the string interpolation warning 002 should be displayed Scenario: Checking attribute Given a cookbook with an attribute file with an interpolated name When I check the cookbook Then the string interpolation warning 002 should be displayed against the attributes file Scenario: Checking metadata Given a cookbook with a metadata file with an interpolated name When I check the cookbook Then the string interpolation warning 002 should be displayed against the metadata file Scenario: Checking provider Given a cookbook with a provider file with an interpolated name When I check the cookbook Then the string interpolation warning 002 should be displayed against the provider file Scenario: Checking resource Given a cookbook with a resource file with an interpolated name When I check the cookbook Then the string interpolation warning 002 should be displayed against the resource file Scenario: Checking library Given a cookbook with a library file with an interpolated name When I check the cookbook Then the string interpolation warning 002 should be displayed against the libraries file Scenario: Checking definition Given a cookbook with a definition file with an interpolated name When I check the cookbook Then the string interpolation warning 002 should be displayed against the definition file foodcritic-3.0.3/features/support/0000755000004100000410000000000012263752452017234 5ustar www-datawww-datafoodcritic-3.0.3/features/support/cookbook_helpers.rb0000644000004100000410000004716112263752452023122 0ustar www-datawww-datamodule FoodCritic # Helper cookbook methods for use in your steps. module CookbookHelpers # Create an attributes file that references attributes with symbols # # @param [String] type The type of node attribute to write def attributes_with_symbols(type) write_attributes %Q{#{type}[:apache][:dir] = "/etc/apache2"} end # Create a Gemfile for a cookbook def buildable_gemfile write_file 'cookbooks/example/Gemfile', %q{ source 'https://rubygems.org/' gem 'rake' gem 'foodcritic', :path => '../../../..' } end # Create a cookbook that declares dependencies on external recipes. # # @param [Symbol] declaration_type The type of declaration - :brace or :bracket def cookbook_declares_dependencies(declaration_type) write_recipe %q{ include_recipe "foo::default" include_recipe "bar::default" include_recipe "baz::default" } if declaration_type == :brace write_metadata %q{ %w{foo bar baz}.each{|cookbook| depends cookbook} } else write_metadata %q{ %w{foo bar baz}.each do |cb| depends cb end } end end # Create a cookbook that will match the specified rules. # # @param [Array] codes The codes to match. Only FC002, FC003 and FC004 are supported. def cookbook_that_matches_rules(codes) recipe = '' codes.each do |code| if code == 'FC002' recipe += %q{ directory "#{node['base_dir']}" do action :create end } elsif code == 'FC003' recipe += %Q{nodes = search(:node, "hostname:[* TO *]")\n} elsif code == 'FC004' recipe += %q{ execute "stop-jetty" do command "/etc/init.d/jetty6 stop" action :run end } elsif code == 'FC006' recipe += %q{ directory "/var/lib/foo" do mode 644 action :create end } end end write_recipe(recipe) write_file('cookbooks/example/recipes/server.rb', '') write_readme('Hello World') # Don't trigger FC011 write_metadata('name "example"') # Don't trigger FC031 end # Create a cookbook with a LRWP # # @param [Hash] lwrp The options to use for the created LWRP # @option lwrp [Symbol] :default_action One of :no_default_action, :ruby_default_action, :dsl_default_action # @option lwrp [Symbol] :notifies One of :does_not_notify, :does_notify, :does_notify_without_parens, :deprecated_syntax, :class_variable # @option lwrp [Symbol] :use_inline_resources Defaults to false def cookbook_with_lwrp(lwrp) lwrp = {:default_action => false, :notifies => :does_not_notify, :use_inline_resources => false}.merge!(lwrp) ruby_default_action = %q{ def initialize(*args) super @action = :create end }.strip write_resource("site", %Q{ actions :create attribute :name, :kind_of => String, :name_attribute => true #{ruby_default_action if lwrp[:default_action] == :ruby_default_action} #{'default_action :create' if lwrp[:default_action] == :dsl_default_action} }) notifications = {:does_notify => 'new_resource.updated_by_last_action(true)', :does_notify_without_parens => 'new_resource.updated_by_last_action true', :deprecated_syntax => 'new_resource.updated = true', :class_variable => '@updated = true'} write_provider("site", %Q{ #{'use_inline_resources' if lwrp[:use_inline_resources]} action :create do log "Here is where I would create a site" #{notifications[lwrp[:notifies]]} end }) end def cookbook_with_lwrp_actions(actions) write_resource("site", %Q{ actions #{actions.map{|a| a[:name].inspect}.join(', ')} attribute :name, :kind_of => String, :name_attribute => true }) write_provider("site", actions.map{|a| provider_action(a)}.join("\n")) end # Create an cookbook with the maintainer specified in the metadata # # @param [String] name The maintainer name # @param [String] email The maintainer email address def cookbook_with_maintainer(name, email) write_recipe %q{ # # Cookbook Name:: example # Recipe:: default # # Copyright 2011, YOUR_COMPANY_NAME # # All rights reserved - Do Not Redistribute # } fields = {} fields['maintainer'] = name unless name.nil? fields['maintainer_email'] = email unless email.nil? write_metadata %Q{ #{fields.map{|field,value| %Q{#{field}\t"#{value}"}}.join("\n")} license "All rights reserved" description "Installs/Configures example" long_description IO.read(File.join(File.dirname(__FILE__), 'README.rdoc')) version "0.0.1" } end # Create an environment file # # @param [Hash] options The options to use for the environment # @option options [String] :dir The relative directory to write to # @option options [String] :environment_name The name of the environment declared in the file # @option options [String] :file_name The containing file relative to the environments directory def environment(options={}) options = {:dir => 'environments'}.merge(options) write_file "#{options[:dir]}/#{options[:file_name]}", %Q{ #{Array(options[:environment_name]).map{|r| "name #{r}"}.join("\n")} cookbook "apache2" }.strip end # Create a placeholder minitest spec that would be linted due to its path # unless an exclusion is specified. def minitest_spec_attributes write_file 'cookbooks/example/test/attributes/default_spec.rb', %q{ describe 'Example::Attributes::Default' do end } end def provider_action(action) case action[:notify_type] when :none then %Q{ action #{action[:name].inspect} do log "Would take action here" end } when :updated_by_last_action then %Q{ action #{action[:name].inspect} do log "Would take action here" # Explicitly update new_resource.updated_by_last_action(true) end } when :converge_by then %Q{ action #{action[:name].inspect} do converge_by "#{action[:name]} site" do log "Would take action here" end end } end end # Create a Rakefile that uses the linter rake task # # @param [Symbol] task Type of task # @param [Hash] options Task options # @option options [String] :name Task name # @option options [String] :files Files to process # @option options [String] :options The options to set on the rake task def rakefile(task, options) rakefile_content = 'task :default => []' task_def = case task when :no_block then 'FoodCritic::Rake::LintTask.new' else %Q{ FoodCritic::Rake::LintTask.new do |t| #{"t.name = '#{options[:name]}'" if options[:name]} #{"t.files = #{options[:files]}" if options[:files]} #{"t.options = #{options[:options]}" if options[:options]} end } end if task_def rakefile_content = %Q{ require 'foodcritic' task :default => [:#{options[:name] ? options[:name] : 'foodcritic'}] #{task_def} } end write_file 'cookbooks/example/Rakefile', rakefile_content end # Create a recipe that downloads a file # # @param [Symbol] path_type The type of path, one of: :tmp_dir, :chef_file_cache_dir, :home_dir def recipe_downloads_file(path_type) download_path = {:tmp_dir => '/tmp/large-file.tar.gz', :tmp_dir_expr => '/tmp/#{file}', :home_dir => '/home/ernie/large-file.tar.gz', :chef_file_cache_dir => '#{Chef::Config[:file_cache_path]}/large-file.tar.gz'}[path_type] write_recipe %Q{ remote_file "#{download_path}" do source "http://www.example.org/large-file.tar.gz" end } end # Install a gem using the specified approach. # # @param [Symbol] type The type of approach, one of :simple, :compile_time, # :compile_time_from_array, :compile_time_from_word_list # @param [Symbol] action Either :install or :upgrade def recipe_installs_gem(type, action = :install) case type when :simple write_recipe %Q{ gem_package "bluepill" do action :#{action} end }.strip when :compile_time write_recipe %Q{ r = gem_package "mysql" do action :nothing end r.run_action(:#{action}) Gem.clear_paths }.strip when :compile_time_from_array write_recipe %Q{ ['foo', 'bar', 'baz'].each do |pkg| r = gem_package pkg do action :nothing end r.run_action(:#{action}) end }.strip when :compile_time_from_word_list write_recipe %Q{ %w{foo bar baz}.each do |pkg| r = gem_package pkg do action :nothing end r.run_action(:#{action}) end }.strip else fail "Unrecognised type: #{type}" end end # Create a recipe that declares a resource with the specified file mode. # # @param [String] type The type of resource (file, template) # @param [String] mode The file mode as a string # @param [String] comment Comment that may specify to exclude a match def recipe_resource_with_mode(type, mode, comment='') source_att = type == 'template' ? 'source "foo.erb"' : '' write_recipe %Q{ #{type} "/tmp/something" do #{comment} #{source_att} owner "root" group "root" mode #{mode} action :create end } end # Create a recipe that controls a service using the specified method. # # @param [Symbol] method How to start the service, one of: :init_d, :invoke_rc_d, :upstart, :service, :service_full_path. # @param [Boolean] do_sleep Whether to prefix the service cmd with a bash sleep # @param [Symbol] action The action to take (start, stop, reload, restart) def recipe_controls_service(method = :service, do_sleep = false, action = :start) cmds = {:init_d => "/etc/init.d/foo #{action}", :invoke_rc_d => "invoke-rc.d foo #{action}", :upstart => "#{action} foo", :service => "service foo #{action}", :service_full_path => "/sbin/service foo #{action}"} write_recipe %Q{ execute "#{action}-foo-service" do command "#{do_sleep ? 'sleep 5; ' : ''}#{cmds[method]}" action :run end } end # Create a recipe with an external dependency on another cookbook. # # @param [Hash] dep The options to use for dependency # @option dep [Boolean] :is_declared True if this dependency has been declared in the cookbook metadata # @option dep [Boolean] :is_scoped True if the include_recipe references a specific recipe or the cookbook # @option dep [Boolean] :parentheses True if the include_recipe is called with parentheses def recipe_with_dependency(dep) dep = {:is_scoped => true, :is_declared => true, :parentheses => false}.merge!(dep) recipe = "foo#{dep[:is_scoped] ? '::default' : ''}" write_recipe(if dep[:parentheses] "include_recipe('#{recipe}')" else "include_recipe '#{recipe}'" end) write_metadata %Q{ version "1.9.0" depends "#{dep[:is_declared] ? 'foo' : 'dogs'}" } end # Create a recipe with a directory resource # # @param [Symbol] path_expr_type The type of path expression, one of: :compound_symbols, :interpolated_string, # :interpolated_symbol, :interpolated_symbol_and_literal, :literal_and_interpolated_symbol, :string_literal. def recipe_with_dir_path(path_expr_type) path = {:compound_symbols => '#{node[:base_dir]}#{node[:sub_dir]}', :interpolated_string => %q{#{node['base_dir']}}, :interpolated_symbol => '#{node[:base_dir]}', :interpolated_symbol_and_literal => '#{node[:base_dir]}/sub_dir', :literal_and_interpolated_symbol => 'base_dir/#{node[:sub_dir]}', :string_literal => '/var/lib/foo' }[path_expr_type] write_recipe %Q{ directory "#{path}" do owner "root" group "root" mode "0755" action :create end } end # Create a recipe with the specified resource type and attribute names. # # @param [String] type The type of resource # @param [Array] attribute_names The attributes to declare on this resource def recipe_with_resource(type, attribute_names) write_recipe %Q{ #{type} "resource-name" do #{attribute_names.join(" 'foo'\n")} 'bar' end } end # Create a recipe with a ruby_block resource. # # @param [Symbol] length A :short or :long block, or :both def recipe_with_ruby_block(length) recipe = '' if length == :short || length == :both recipe << %q{ ruby_block "subexpressions" do block do rc = Chef::Util::FileEdit.new("/foo/bar.conf") rc.search_file_replace_line(/^search/, "search #{node["foo"]["bar"]} compute-1.internal") rc.search_file_replace_line(/^domain/, "domain #{node["foo"]["bar"]}") rc.write_file end action :create end } end if length == :long || length == :both recipe << %q{ ruby_block "too_long" do block do begin do_something('with argument') do_something_else('with another argument') foo = Foo.new('bar') foo.activate_turbo_boost foo.each do |thing| case thing when "fee" puts 'Fee' when "fi" puts 'Fi' when "fo" puts 'Fo' else puts "Fum" end end rescue Some::Exception Chef::Log.warn "Problem activating the turbo boost" end end action :create end } end write_recipe(recipe) end # Create a recipe that performs a search of the specified type. # # @param [Symbol] type The type of search. One of: :invalid_syntax, :valid_syntax, :with_subexpression. def recipe_with_search(type) search = {:invalid_syntax => 'run_list:recipe[foo::bar]', :valid_syntax => 'run_list:recipe\[foo\:\:bar\]', :with_subexpression => %q{roles:#{node['foo']['role']}}}[type] write_recipe %Q{ search(:node, "#{search}") do |matching_node| puts matching_node.to_s end } end # Create a role file # # @param [Hash] options The options to use for the role # @option options [String] :role_name The name of the role declared in the role file # @option options [String] :file_name The containing file relative to the roles directory # @option options [Symbol] :format Either :ruby or :json. Default is :ruby def role(options={}) options = {:format => :ruby, :dir => 'roles'}.merge(options) content = if options[:format] == :json %Q{ { "chef_type": "role", "json_class": "Chef::Role", #{Array(options[:role_name]).map{|r| "name: #{r},"}.join("\n")} "run_list": [ "recipe[apache2]", ] } } else %Q{ #{Array(options[:role_name]).map{|r| "name #{r}"}.join("\n")} run_list "recipe[apache2]" } end write_file "#{options[:dir]}/#{options[:file_name]}", content.strip end # Create a rule with the specified Chef version constraints # # @param [String] from_version The from version # @param [String] to_version The to version def rule_with_version_constraint(from_version, to_version) constraint = if from_version && to_version %Q{ applies_to do |version| version >= gem_version("#{from_version}") && version <= gem_version("#{to_version}") end } elsif from_version %Q{ applies_to do |version| version >= gem_version("#{from_version}") end } elsif to_version %Q{ applies_to do |version| version <= gem_version("#{to_version}") end } end write_rule %Q{ rule "FCTEST001", "Test Rule" do #{constraint} recipe do |ast, filename| [file_match(filename)] end end } end # Return the provided string or nil if 'unspecified' # # @param [String] str The string # @return [String] The string or nil if 'unspecified' def nil_if_unspecified(str) str == 'unspecified' ? nil : str end # Create a README with the provided content. # # @param [String] content The recipe content. # @param [String] cookbook_name Optional name of the cookbook. def write_readme(content, cookbook_name = 'example') write_file "cookbooks/#{cookbook_name}/README.md", content.strip end # Create a recipe with the provided content. # # @param [String] content The recipe content. # @param [String] cookbook_name Optional name of the cookbook. def write_recipe(content, cookbook_name = 'example') write_file "cookbooks/#{cookbook_name}/recipes/default.rb", content.strip end # Create a rule with the provided content. # # @param [String] content The rule content. def write_rule(content) write_file "rules/test.rb", content.strip end # Create attributes with the provided content. # # @param [String] content The attributes content. def write_attributes(content) write_file 'cookbooks/example/attributes/default.rb', content.strip end # Create a definition with the provided content. # # @param [String] name The definition name. # @param [String] content The definition content. def write_definition(name, content) write_file "cookbooks/example/definitions/#{name}.rb", content.strip end # Create a library with the provided content. # # @param [String] name The library name. # @param [String] content The library content. def write_library(name, content) write_file "cookbooks/example/libraries/#{name}.rb", content.strip end # Create metdata with the provided content. # # @param [String] content The metadata content. def write_metadata(content) write_file 'cookbooks/example/metadata.rb', content.strip end # Create a resource with the provided content. # # @param [String] name The resource name. # @param [String] content The resource content. def write_resource(name, content) write_file "cookbooks/example/resources/#{name}.rb", content.strip end # Create a provider with the provided content. # # @param [String] name The resource name. # @param [String] content The resource content. def write_provider(name, content) write_file "cookbooks/example/providers/#{name}.rb", content.strip end end end World(FoodCritic::CookbookHelpers) foodcritic-3.0.3/features/support/env.rb0000644000004100000410000000024212263752452020347 0ustar www-datawww-datarequire 'simplecov' SimpleCov.start do add_filter '/features/' end require 'aruba/cucumber' require 'foodcritic' Before do @aruba_timeout_seconds = 300 end foodcritic-3.0.3/features/support/command_helpers.rb0000644000004100000410000003262212263752452022726 0ustar www-datawww-datamodule FoodCritic # Helpers for asserting that the correct warnings are displayed. # # Unless the environment variable FC_FORK_PROCESS is set to 'true' then the features will be run in the same process. module CommandHelpers # The warning codes and messages displayed to the end user. WARNINGS = { 'FC002' => 'Avoid string interpolation where not required', 'FC003' => 'Check whether you are running with chef server before using server-specific features', 'FC004' => 'Use a service resource to start and stop services', 'FC005' => 'Avoid repetition of resource declarations', 'FC006' => 'Mode should be quoted or fully specified when setting file permissions', 'FC007' => 'Ensure recipe dependencies are reflected in cookbook metadata', 'FC008' => 'Generated cookbook metadata needs updating', 'FC009' => 'Resource attribute not recognised', 'FC010' => 'Invalid search syntax', 'FC011' => 'Missing README in markdown format', 'FC012' => 'Use Markdown for README rather than RDoc', 'FC013' => 'Use file_cache_path rather than hard-coding tmp paths', 'FC014' => 'Consider extracting long ruby_block to library', 'FC015' => 'Consider converting definition to a LWRP', 'FC016' => 'LWRP does not declare a default action', 'FC017' => 'LWRP does not notify when updated', 'FC018' => 'LWRP uses deprecated notification syntax', 'FC019' => 'Access node attributes in a consistent manner', 'FC021' => 'Resource condition in provider may not behave as expected', 'FC022' => 'Resource condition within loop may not behave as expected', 'FC023' => 'Prefer conditional attributes', 'FC024' => 'Consider adding platform equivalents', 'FC025' => 'Prefer chef_gem to compile-time gem install', 'FC026' => 'Conditional execution block attribute contains only string', 'FC027' => 'Resource sets internal attribute', 'FC028' => 'Incorrect #platform? usage', 'FC029' => 'No leading cookbook name in recipe metadata', 'FC030' => 'Cookbook contains debugger breakpoints', 'FC031' => 'Cookbook without metadata file', 'FC032' => 'Invalid notification timing', 'FC033' => 'Missing template', 'FC034' => 'Unused template variables', 'FC037' => 'Invalid notification action', 'FC038' => 'Invalid resource action', 'FC039' => 'Node method cannot be accessed with key', 'FC040' => 'Execute resource used to run git commands', 'FC041' => 'Execute resource used to run curl or wget commands', 'FC042' => 'Prefer include_recipe to require_recipe', 'FC043' => 'Prefer new notification syntax', 'FC044' => 'Avoid bare attribute keys', 'FC045' => 'Consider setting cookbook name in metadata', 'FC046' => 'Attribute assignment uses assign unless nil', 'FC047' => 'Attribute assignment does not specify precedence', 'FC048' => 'Prefer Mixlib::ShellOut', 'FC049' => 'Role name does not match containing file name', 'FC050' => 'Name includes invalid characters', 'FC051' => 'Template partials loop indefinitely', 'FCTEST001' => 'Test Rule' } # If the cucumber features should run foodcritic in the same process or spawn a separate process. def self.running_in_process? ! (ENV.has_key?('FC_FORK_PROCESS') and ENV['FC_FORK_PROCESS'] == true.to_s) end # Capture an error expected when calling a command. def capture_error begin yield @error = all_output unless last_exit_status == 0 rescue => @error end end # Return the last error captured # # @return [String] The last error captured def last_error @error.respond_to?(:message) ? @error.message : @error end # Expect a line of context # # @param [Number] line_no The line number # @param [String] text The text of the matching line def expect_line_shown(line_no, text) expect_output %r{^ +#{Regexp.escape(line_no.to_s)}\|#{Regexp.escape(text)}$} end # Expect a warning to be included in the command output. # # @param [String] code The warning code to check for. # @param [Hash] options The warning options. # @option options [Integer] :line The line number the warning should appear on - nil for any line. # @option options [Boolean] :expect_warning If false then assert that a warning is NOT present # @option options [String] :file The path to the file the warning should be raised against # @option options [Symbol] :file_type Alternative to specifying file name. One of: :attributes, :definition, # :metadata, :provider, :resource def expect_warning(code, options={}) if options.has_key?(:file_type) options[:file] = {:attributes => 'attributes/default.rb', :definition => 'definitions/apache_site.rb', :metadata => 'metadata.rb', :provider => 'providers/site.rb', :resource => 'resources/site.rb', :libraries => 'libraries/lib.rb'}[options[:file_type]] end options = {:line => 1, :expect_warning => true, :file => 'recipes/default.rb'}.merge!(options) unless options[:file].include?('roles') || options[:file].include?('environments') options[:file] = "cookbooks/example/#{options[:file]}" end if options[:warning_only] warning = "#{code}: #{WARNINGS[code]}" else warning = "#{code}: #{WARNINGS[code]}: #{options[:file]}:#{options[:line]}#{"\n" if ! options[:line].nil?}" end options[:expect_warning] ? expect_output(warning) : expect_no_output(warning) end # Expect a warning not to be included in the command output. # # @see CommandHelpers#expect_warning def expect_no_warning(code, options={:expect_warning => false}) expect_warning(code, options) end # Expect a command line option / switch to be included in the usage. # # @param [String] short_switch The short version of the switch # @param [String] long_switch The long descriptive version of the switch # @param [String] description The description of the switch def expect_usage_option(short_switch, long_switch, description) expected_switch = "-#{Regexp.escape(short_switch)}, --#{Regexp.escape(long_switch)}[ ]+#{Regexp.escape(description)}" expect_output(Regexp.new(expected_switch)) end def man_page_options man_path = Pathname.new(__FILE__) + '../../../man/foodcritic.1.ronn' option_lines = File.read(man_path).split('## ').find do |s| s.start_with?('OPTIONS') end.split("\n").select{|o| o.start_with?(' *')} option_lines.map do |o| o.sub('`[`no-`]`', '').split('`').select{|f| f.include?('-')} end.map do |option| {:short => option.first.sub(/^-/, ''), :long => option.last.sub(/^--/, '')} end.sort_by{|o| o[:short]} end # Assert that the usage message is displayed. # # @param [Boolean] is_exit_zero The exit code to check for. def usage_displayed(is_exit_zero) expect_output 'foodcritic [cookbook_paths]' usage_options.each do |option| expect_usage_option(option[:short], option[:long], option[:description]) end if is_exit_zero assert_no_error_occurred else assert_error_occurred end end def usage_options [ {:short => 'c', :long => 'chef-version VERSION', :description => 'Only check against rules valid for this version of Chef.'}, {:short => 'f', :long => 'epic-fail TAGS', :description => "Fail the build if any of the specified tags are matched ('any' -> fail on any match)."}, {:short => 't', :long => 'tags TAGS', :description => 'Only check against rules with the specified tags.'}, {:short => 'B', :long => 'cookbook-path PATH', :description => 'Cookbook path(s) to check.'}, {:short => 'C', :long => '[no-]context', :description => 'Show lines matched against rather than the default summary.'}, {:short => 'E', :long => 'environment-path PATH', :description => 'Environment path(s) to check.'}, {:short => 'I', :long => 'include PATH', :description => 'Additional rule file path(s) to load.'}, {:short => 'R', :long => 'role-path PATH', :description => 'Role path(s) to check.'}, {:short => 'S', :long => 'search-grammar PATH', :description => 'Specify grammar to use when validating search syntax.'}, {:short => 'V', :long => 'version', :description => 'Display the foodcritic version.'} ] end def usage_options_for_diff usage_options.map do |o| {:short => o[:short], :long => o[:long].split(' ').first.sub(/^\[no-\]/, '')} end.sort_by{|o| o[:short]} end end # Helpers used when features are executed in-process. module InProcessHelpers # Assert that the output contains the specified warning. # # @param [String] output The warning to check for. def expect_output(output) if output.respond_to?(:~) @review.should match(output) else @review.should include(output) end end # Assert that the output does not contain the specified warning. # # @param [String] output The output to check for. def expect_no_output(output) if output.respond_to?(:~) @review.should_not match(output) else @review.should_not include(output) end end # Assert that an error occurred following a lint check. def assert_error_occurred @status.should_not == 0 end # Assert that no error occurred following a lint check. def assert_no_error_occurred @status.should == 0 end # Run a lint check with the provided command line arguments. # # @param [Array] cmd_args The command line arguments. def run_lint(cmd_args) in_current_dir do show_context = cmd_args.include?('-C') review, @status = FoodCritic::Linter.check(CommandLine.new(cmd_args)) @review = if review.nil? || (review.respond_to?(:warnings) && review.warnings.empty?) '' elsif show_context ContextOutput.new.output(review) else "#{review.to_s}\n" end end end end # For use with steps that use bundler and rake. These will always be run # via Aruba. module BuildHelpers # Assert the build outcome # # @param [Boolean] success True if the build should succeed # @param [Array] warnings The warnings expected def assert_build_result(success, warnings) success ? assert_no_error_occurred : assert_error_occurred warnings.each do |code| expect_warning(code, :warning_only => true) end end # Assert that warnings have not been raised against the test code which # should have been excluded from linting. def assert_no_test_warnings all_output.split("\n").grep(/FC[0-9]+:/).map do |warn| File.basename(File.dirname(warn.split(':').take(3).last.strip)) end.should_not include 'test' end # The available tasks for this build # # @return [Array] Task name and description def build_tasks all_output.split("\n").map do |task| next unless task.start_with? 'rake' task.split("#").map{|t| t.strip.sub(/^rake /, '')} end.compact end # List the defined Rake tasks def list_available_build_tasks cd 'cookbooks/example' unset_bundler_env_vars run_simple 'bundle exec rake -T' end # Run a build for a Rakefile that uses the lint rake task def run_build cd 'cookbooks/example' run_simple "bundle exec rake", false end # We want to avoid traversing vendored gems because of the unnecessary # performance hit and because gems may contain deeply-nested code which # will blow the stack on parsing. def vendor_gems cd 'cookbooks/example' unset_bundler_env_vars run_simple 'bundle install --path vendor/bundle' cd '../..' end end # Helpers used when features are executed out of process. module ArubaHelpers include BuildHelpers # Assert that the output contains the specified warning. # # @param [String] output The output to check for. def expect_output(output) if output.respond_to?(:~) assert_matching_output(output.to_s, all_output) else assert_partial_output(output, all_output) end end # Assert that the output does not contain the specified warning. # # @param [String] output The output to check for. def expect_no_output(output) if output.respond_to?(:~) assert_matching_output('^((?!#{output}).)*$', all_output) else assert_no_partial_output(output, all_output) end end # Assert that an error occurred following a lint check. def assert_error_occurred assert_not_exit_status 0 end # Assert that no error occurred following a lint check. def assert_no_error_occurred assert_exit_status(0) end # Run a lint check with the provided command line arguments. # # @param [Array] cmd_args The command line arguments. def run_lint(cmd_args) run_simple(unescape("foodcritic #{cmd_args.join(' ')}"), false) end end end World(FoodCritic::CommandHelpers) if FoodCritic::CommandHelpers.running_in_process? World(FoodCritic::InProcessHelpers) else World(FoodCritic::ArubaHelpers) end foodcritic-3.0.3/features/041_check_raw_download.feature0000644000004100000410000000225512263752452023302 0ustar www-datawww-dataFeature: Check for direct usage of curl or wget In order to fetch remote artefacts idiomatically As a developer I want to use resources to download rather than using curl or wget Scenario Outline: Execute resource Given a cookbook recipe with an execute resource named When I check the cookbook Then the execute resource used to run curl or wget commands warning 041 be displayed Examples: | name | display | | curl 'http://example.org/' | should | | wget 'http://example.org/' | should | | which foo | should not | Scenario Outline: Execute resource Given a cookbook recipe with an execute resource that runs the command When I check the cookbook Then the execute resource used to run curl or wget commands warning 041 be displayed Examples: | command | display | | which foo | should not | | curl 'http://example.org/' | should | | wget 'http://example.org/' | should | | mkdir foo && wget 'http://example.org/' | should | foodcritic-3.0.3/features/040_check_raw_git_usage.feature0000644000004100000410000000354512263752452023444 0ustar www-datawww-dataFeature: Check for direct usage of git In order to access source control repositories idiomatically As a developer I want to use resources for repository access rather than executing git directly Scenario Outline: Execute resource Given a cookbook recipe with an execute resource named When I check the cookbook Then the execute resource used to run git commands warning 040 be displayed Examples: | name | display | | git pull | should | | git clone | should | | git fetch | should | | git checkout | should | | git reset --hard | should | | git show | should not | | echo 'bob' && git show | should not | | which foo | should not | Scenario Outline: Execute resource Given a cookbook recipe with an execute resource that runs the command When I check the cookbook Then the execute resource used to run git commands warning 040 be displayed Examples: | command | display | | git clone https://github.com/git/git.git | should | | git clone --depth 10 https://github.com/git/git.git | should | | git pull | should | | git fetch origin | should | | git checkout master | should | | git reset --hard | should | | git show | should not | | echo 'bob' && git show | should not | | gitk | should not | | curl http://github.com/ | should not | foodcritic-3.0.3/features/045_check_for_cookbook_name_in_metadata.feature0000644000004100000410000000165312263752452026631 0ustar www-datawww-dataFeature: Check for cookbook name in metadata In order to avoid complications where a cookbook repository name differs from the cookbook name As a developer I want to set the cookbook name within the metadata Scenario: Name specified in metadata Given a cookbook with metadata that specifies the cookbook name When I check the cookbook Then the consider setting cookbook name warning 045 should not be displayed against the metadata file Scenario: Name not specified in metadata Given a cookbook with metadata that does not specify the cookbook name When I check the cookbook Then the consider setting cookbook name warning 045 should be displayed against the metadata file Scenario: No cookbook metadata Given a cookbook that does not have defined metadata When I check the cookbook Then the consider setting cookbook name warning 045 should be displayed against the metadata file foodcritic-3.0.3/features/031_check_for_metadata_existence.feature0000644000004100000410000000116512263752452025315 0ustar www-datawww-dataFeature: Check for metadata existence In order to ensure that cookbook has the minimum As a developer I want to verify that the metadata file exist Scenario: Cookbook without metadata file Given a cookbook that does not have defined metadata When I check the cookbook Then the non existing metadata warning 031 should be displayed against the metadata file Scenario: Cookbook with metadata file Given a cookbook that has the default boilerplate metadata generated by knife When I check the cookbook Then the non existing metadata warning 031 should not be displayed against the metadata file foodcritic-3.0.3/features/038_check_for_invalid_action.feature0000644000004100000410000000403212263752452024454 0ustar www-datawww-dataFeature: Check for invalid resource actions In order to avoid failure at converge time As a developer I want to identify resources that have an invalid action Scenario: Resource with default action Given a cookbook recipe with a service resource that does not specify an action When I check the cookbook Then the invalid resource action warning 038 should not be displayed Scenario: Resource with variable action Given a cookbook recipe with a service resource with an action specified via a variable When I check the cookbook Then the invalid resource action warning 038 should not be displayed Scenario Outline: Resource actions Given a cookbook recipe with a resource with action When I check the cookbook Then the invalid resource action warning 038 be displayed Examples: | resource | action | display | | service | restart | should not | | service | nothing | should not | | service | none | should | | service | create | should | | execute | run | should not | | execute | go | should | | foo | none | should not | Scenario Outline: Multiple actions Given a cookbook recipe with a resource with actions When I check the cookbook Then the invalid resource action warning 038 be displayed Examples: | resource | actions | display | | service | enable, start | should not | | service | enble, start | should | | foo | energize, revitalize | should not | Scenario Outline: Reconfigure a package Given a recipe that reconfigures a package When I check the cookbook specifying as the Chef version Then the invalid resource action warning 038 be displayed Examples: | version | display | | 0.9.2 | should | | 0.10.0 | should | | 0.10.6.beta3 | should not | | 0.10.6 | should not | | 11.4.0 | should not | foodcritic-3.0.3/features/043_check_for_old_notification_style.feature0000644000004100000410000000256512263752452026242 0ustar www-datawww-dataFeature: Check for old notification style In order to be able to notify a resource that has not yet been declared As a developer I want to use the new-style notification syntax Scenario: No notification Given a cookbook recipe with no notifications When I check the cookbook Then the prefer new notification syntax warning 043 should not be displayed Scenario: New-style notification Given a cookbook recipe with a resource that notifies a service to restart When I check the cookbook Then the prefer new notification syntax warning 043 should not be displayed Scenario: Old-style notification Given a cookbook recipe with a resource that uses the old notification syntax When I check the cookbook Then the prefer new notification syntax warning 043 should be displayed Scenario Outline: Applicability by Chef version Given a cookbook recipe with a resource that uses the old notification syntax When I check the cookbook specifying as the Chef version Then the prefer new notification syntax warning 043 be displayed Examples: | version | displayed | | 0.7.6 | should not | | 0.8.16 | should not | | 0.9.0 | should not | | 0.9.10 | should | | 0.9.18 | should | | 0.10.0 | should | | 10.24.0 | should | | 11.4.0 | should | foodcritic-3.0.3/features/specify_search_grammar.feature0000644000004100000410000000223712263752452023576 0ustar www-datawww-dataFeature: Specify search grammar In order to allow the use of alternate search grammars when validating search syntax As a developer I want to be able to specify the grammar to use as a command line option Scenario: No grammar passed Given a cookbook recipe that attempts to perform a search with invalid syntax When I check the cookbook Then the invalid search syntax warning 010 should be displayed Scenario: Missing grammar passed Given a cookbook recipe that attempts to perform a search with invalid syntax When I check the cookbook specifying a search grammar that does not exist Then the check should abort with an error Scenario: Invalid grammar passed Given a cookbook recipe that attempts to perform a search with invalid syntax When I check the cookbook specifying a search grammar that is not in treetop format Then the check should abort with an error Scenario: Valid grammar passed Given a cookbook recipe that attempts to perform a search with invalid syntax When I check the cookbook specifying a search grammar that is a valid treetop grammar Then the invalid search syntax warning 010 should be displayed foodcritic-3.0.3/features/007_check_for_undeclared_recipe_dependencies.feature0000644000004100000410000000475412263752452027643 0ustar www-datawww-dataFeature: Check for undeclared recipe dependencies In order to prevent failure of my Chef run due to a missing cookbook As a developer I want to identify included recipes that are not expressed in cookbook metadata Scenario Outline: Cookbook includes undeclared recipe dependency Given a cookbook recipe that includes an undeclared recipe dependency When I check the cookbook Then the undeclared dependency warning 007 should be displayed Examples: | qualifiers | | | | with parentheses | | unscoped | | unscoped with parentheses | Scenario: Cookbook includes recipe via expression Given a cookbook recipe that includes a recipe name from an expression When I check the cookbook Then the undeclared dependency warning 007 should not be displayed Scenario Outline: Cookbook includes recipe via expression (embedded) Given a cookbook recipe that includes a recipe name from an embedded expression When I check the cookbook Then the undeclared dependency warning 007 should not be displayed Examples: | recipe_expression | | foo::#{node['foo']['fighter']} | | #{cookbook_name}::other | | #{cbk}_other::other | Scenario Outline: Declared dependencies Given a cookbook recipe that includes When I check the cookbook Then the undeclared dependency warning 007 should not be displayed Examples: | dependency_type | | a declared recipe dependency | | a declared recipe dependency unscoped | | several declared recipe dependencies - block | | several declared recipe dependencies - brace | | a local recipe | | a local recipe where the directory is differently named | Scenario: Cookbook includes mix of declared and undeclared recipe dependencies Given a cookbook recipe that includes both declared and undeclared recipe dependencies When I check the cookbook Then the undeclared dependency warning 007 should be displayed only for the undeclared dependencies Scenario: Cookbook has no metadata file Given a cookbook that does not have defined metadata When I check the cookbook Then the undeclared dependency warning 007 should not be displayed And no error should have occurred foodcritic-3.0.3/features/ignore_via_line_comments.feature0000644000004100000410000000524612263752452024142 0ustar www-datawww-dataFeature: Ignoring rules on per line basis To ignore specific warnings on some lines As a developer I want to add an ignore comment Scenario Outline: Ignoring Given a file resource declared with the mode 644 with comment When I check the cookbook Then the warning 006 should Examples: | comment | shown | | | be shown | | # | be shown | | # foo bar baz | be shown | | # ~FC006 | not be shown | | # ~FC006 is a false positive | not be shown | | #~FC006 | not be shown | | #~FC022 | be shown | | # ~FC006 | not be shown | | # ~FC003,~FC006,~FC009 | not be shown | | # ~FC003 ~FC006 ~FC009 | not be shown | | # ~FC003, ~FC006, ~FC009 | not be shown | | # ~FC003,~FC009 | be shown | | # FC006 | be shown | | # ~ FC006 | be shown | | # fc006 | be shown | | # ~006 | be shown | | # ~style | be shown | | # ~files | not be shown | Scenario Outline: Ignoring cookbook level rules Given a cookbook with a single recipe that triggers FC019 with comment And metadata When I check the cookbook Then the attribute consistency warning 019 should Examples: | comment | shown | | | be shown | | #~FC019 | be not shown | Scenario Outline: Multiple warnings Given a file with multiple errors on one line with comment When I check the cookbook Then the warnings shown should be Examples: | comment | warnings | | | FC002,FC039 | | # ~FC002,~FC007 | FC002 | | # ~FC002,~FC039 | | | # ~FC002 | FC039 | Scenario Outline: Ignoring role rules Given a ruby role that triggers FC049 with comment When I check the role directory Then the role name does not match file name warning 049 should Examples: | comment | shown | | | be shown | | #~FC049 | not be shown | Scenario Outline: Ignoring environment rules Given a ruby environment that triggers FC050 with comment When I check the environment directory Then the invalid environment name warning 050 should Examples: | comment | shown | | | be shown | | #~FC050 | not be shown | foodcritic-3.0.3/features/028_check_for_incorrect_platform_method.feature0000644000004100000410000000164212263752452026730 0ustar www-datawww-dataFeature: Check for incorrect platform method usage In order to avoid running code intended for another platform As a developer I want to identify conditionals that wrongly use node.platform? Scenario Outline: Platform conditionals Given a cookbook recipe that wraps a platform-specific resource in a conditional When I check the cookbook Then the incorrect platform usage warning 028 should be Examples: | conditional | show_warning | | platform? 'linux' | not shown | | platform?('linux') | not shown | | platform?('linux', 'mac_os_x') | not shown | | node.platform? 'linux' | shown | | node.platform?('linux') | shown | | node.platform?('linux', 'mac_os_x') | shown | | node.platform == 'linux' | not shown | foodcritic-3.0.3/features/005_check_for_resource_repetition.feature0000644000004100000410000000612512263752452025561 0ustar www-datawww-dataFeature: Check for resource repetition In order to write my recipe without being needlessly verbose As a developer I want to identify resources that vary minimally so I can reduce copy and paste Scenario: Package resource varying only a single attribute Given a cookbook recipe that declares multiple resources varying only in the package name When I check the cookbook Then the service resource warning 005 should be displayed Scenario: Package resource varying only a single attribute for a small number of resources Given a cookbook recipe that declares two or fewer resources varying only in the package name When I check the cookbook Then the service resource warning 005 should not be displayed Scenario: Package resource varying multiple attributes Given a cookbook recipe that declares multiple resources with more variation When I check the cookbook Then the service resource warning 005 should not be displayed Scenario: Non-varying packages mixed with other resources Given a cookbook recipe that declares multiple package resources mixed with other resources When I check the cookbook Then the service resource warning 005 should be displayed Scenario: Non-contiguous packages mixed with other resources Given a cookbook recipe that declares non contiguous package resources mixed with other resources When I check the cookbook Then the service resource warning 005 should not be displayed Scenario: Execute resources branching Given a cookbook recipe that declares execute resources varying only in the command in branching conditionals When I check the cookbook Then the service resource warning 005 should not be visible Scenario: Execute resources branching - too many Given a cookbook recipe that declares too many execute resources varying only in the command in branching conditionals When I check the cookbook Then the service resource warning 005 should be visible Scenario: Execute resources branching in provider actions Given a cookbook provider that declares execute resources varying only in the command in separate actions When I check the cookbook Then the service resource warning 005 should not be shown Scenario: Execute resources in the same provider action Given a cookbook provider that declares execute resources varying only in the command in the same action When I check the cookbook Then the service resource warning 005 should be shown Scenario Outline: Template resources within a block Given a cookbook recipe that declares multiple template resources within a block When I check the cookbook Then the service resource warning 005 should against the first resource in the block Examples: | type | show | | varying | not be displayed | | non-varying | be displayed | Scenario: Directories with different file modes Given a cookbook recipe that declares multiple directories with different file modes When I check the cookbook Then the service resource warning 005 should not be displayed foodcritic-3.0.3/features/016_check_for_no_lwrp_default_action.feature0000644000004100000410000000164312263752452026213 0ustar www-datawww-dataFeature: Check for no LWRP default action In order to avoid wondering why a LWRP is not taking action As a developer I want to identify when a LWRP does not declare a default action Scenario: LWRP with no default action Given a cookbook that contains a LWRP with no default action When I check the cookbook Then the LWRP has no default action warning 016 should be displayed against the resource file Scenario: LWRP with a default action Given a cookbook that contains a LWRP with a default action When I check the cookbook Then the LWRP has no default action warning 016 should not be displayed against the resource file Scenario: LWRP with a default action (pre-DSL) Given a cookbook that contains a LWRP with a default action defined via a constructor When I check the cookbook Then the LWRP has no default action warning 016 should not be displayed against the resource file foodcritic-3.0.3/features/021_check_for_dodgy_lwrp_conditions.feature0000644000004100000410000000407112263752452026067 0ustar www-datawww-dataFeature: Check for dodgy provider conditions In order to ensure that resources are declared as intended within a resource provider As a developer I want to identify resource conditions that will be checked only for the first resource Scenario: Provider with no condition Given a cookbook that contains a LWRP that declares a resource with no condition When I check the cookbook Then the dodgy resource condition warning 021 should not be displayed against the provider file Scenario Outline: Provider conditions Given a cookbook that contains a LWRP that declares a resource called with the condition When I check the cookbook Then the dodgy resource condition warning 021 be displayed against the provider file Examples: | name | condition | show_warning | | "create_site" | not_if { ::File.exists?("/tmp/fixed-path")} | should not | | "create_site" | not_if { ::File.exists?("/tmp/#{new_resource.name}")} | should | | "create_site_#{new_resource.name}" | not_if { ::File.exists?("/tmp/#{new_resource.name}")} | should not | | "create_site" | only_if { ::File.exists?("/tmp/#{new_resource.name}")} | should | | "create_site_#{new_resource.name}" | only_if { ::File.exists?("/tmp/#{new_resource.name}")} | should not | | "create_site" | only_if "[ ! -f \"/tmp/#{new_resource.name}\" ]" | should | | "create_site" | not_if "[ -f \"/tmp/#{new_resource.name}\" ]" | should | | "create_site_#{new_resource.name}" | not_if "[ -f \"/tmp/#{new_resource.name}\" ]" | should not | | "create_site" | only_if do ::File.exists?("/tmp/#{new_resource.name}") end | should | | "create_site_#{new_resource.name}" | only_if do ::File.exists?("/tmp/#{new_resource.name}") end | should not | foodcritic-3.0.3/spec/0000755000004100000410000000000012263752452014634 5ustar www-datawww-datafoodcritic-3.0.3/spec/foodcritic/0000755000004100000410000000000012263752452016761 5ustar www-datawww-datafoodcritic-3.0.3/spec/foodcritic/domain_spec.rb0000644000004100000410000000347512263752452021600 0ustar www-datawww-datarequire_relative '../spec_helper' describe FoodCritic::Review do it "is instantiable with no warnings" do FoodCritic::Review.new('example', []) end describe "#cookbook_paths" do it "returns the cookbook paths provided" do FoodCritic::Review.new(['example'], []).cookbook_paths.must_equal ['example'] end it "returns the cookbook paths provided when there are multiple" do FoodCritic::Review.new(['example', 'example2'], []).cookbook_paths.must_equal ['example', 'example2'] end end describe "#warnings" do it "returns empty when there are no warnings" do FoodCritic::Review.new('example', []).warnings.must_be_empty end it "makes the warnings available" do warning = 'Danger Will Robinson' FoodCritic::Review.new('example', [warning]).warnings.must_equal [warning] end end end describe FoodCritic::Rule do let(:rule) { FoodCritic::Rule.new('FCTEST001', 'Test rule') } describe '#matches_tags?' do it "matches the rule's code" do rule.matches_tags?(['FCTEST001']).must_equal true end it "doesn't match an unrelated code" do rule.matches_tags?(['FCTEST999']).must_equal false end end describe '#tags' do it "returns any + the rule's code" do rule.tags.must_equal ['any', 'FCTEST001'] end end end describe FoodCritic::Warning do let(:rule) { FoodCritic::Rule.new('FCTEST001', 'Test rule') } let(:match_opts) { {:filename => 'foo/recipes.default.rb', :line => 5, :column=> 40} } describe "failure indication" do it 'is false if no fail_tags match' do FoodCritic::Warning.new(rule, match_opts, {:fail_tags => []}).failed?.must_equal false end it 'is true if fail_tags do match' do FoodCritic::Warning.new(rule, match_opts, {:fail_tags => ['any']}).failed?.must_equal true end end end foodcritic-3.0.3/spec/foodcritic/chef_spec.rb0000644000004100000410000000401012263752452021220 0ustar www-datawww-datarequire_relative '../spec_helper' describe FoodCritic::Chef do let(:api) { Object.new.extend(FoodCritic::Api) } describe "#chef_dsl_methods" do it "returns an enumerable" do api.chef_dsl_methods.each{|m| m} end it "does not return an empty" do api.chef_dsl_methods.wont_be_empty end it "returns dsl methods as symbols" do assert api.chef_dsl_methods.all?{|m| m == m.to_sym} end end describe "#resource_attribute?" do it "raises if the resource_type is nil" do lambda{api.resource_attribute?(nil, :name)}.must_raise(ArgumentError) end it "raises if the resource_type is empty" do lambda{api.resource_attribute?('', :name)}.must_raise(ArgumentError) end it "raises if the attribute_name is nil" do lambda{api.resource_attribute?(:file, nil)}.must_raise(ArgumentError) end it "raises if the attribute_name is empty" do lambda{api.resource_attribute?(:file, '')}.must_raise(ArgumentError) end it "returns true if the resource attribute is known" do assert api.resource_attribute?(:file, :name) end it "returns false if the resource attribute is not known" do refute api.resource_attribute?(:file, :size) end it "returns true for unrecognised resources" do assert api.resource_attribute?(:cluster_file, :size) end it "allows the resource type to be passed as a string" do refute api.resource_attribute?("file", :size) end it "allows the attribute_name to be passed as a string" do assert api.resource_attribute?(:file, 'mode') end end describe "#valid_query?" do it "raises if the query is nil" do lambda{api.valid_query?(nil)}.must_raise(ArgumentError) end it "raises if the query is empty" do lambda{api.valid_query?('')}.must_raise(ArgumentError) end it "coerces the provided object to a string" do query = Class.new do def to_s '*:*' end end.new assert api.valid_query?(query) end end end foodcritic-3.0.3/spec/foodcritic/command_line_spec.rb0000644000004100000410000000422112263752452022744 0ustar www-datawww-datarequire_relative '../spec_helper' describe FoodCritic::CommandLine do it "is instantiable" do FoodCritic::CommandLine.new([]).wont_be_nil end describe "#cookbook_paths" do it "returns an empty array if no paths are specified" do FoodCritic::CommandLine.new([]).cookbook_paths.must_be_empty end it "returns a single item array for a specified directory" do FoodCritic::CommandLine.new(["example"]).cookbook_paths.must_equal ["example"] end it "returns multiple items for multiple specified directories" do FoodCritic::CommandLine.new(["example", "another_example"]).cookbook_paths.must_equal ["example", "another_example"] end it "ignores known arguments" do FoodCritic::CommandLine.new(["example", "--context"]).cookbook_paths.must_equal ["example"] end end describe "#role_paths" do it "returns an empty if no role paths are specified" do FoodCritic::CommandLine.new([]).role_paths.must_be_empty end it "returns the provided role path" do FoodCritic::CommandLine.new(['-R', 'roles']).role_paths.must_equal(%w{roles}) end it "returns the provided role paths when there are multiple" do FoodCritic::CommandLine.new(['-R', 'roles1', '-R', 'roles2']).role_paths.must_equal(%w{roles1 roles2}) end end describe "#valid_paths?" do it "returns false if no paths are specified" do refute FoodCritic::CommandLine.new([]).valid_paths? end it "returns true if the specified directory exists" do assert FoodCritic::CommandLine.new(["lib"]).valid_paths? end it "returns false if the specified directory does not exist" do refute FoodCritic::CommandLine.new(["lib2"]).valid_paths? end it "returns true if the specified file exists" do assert FoodCritic::CommandLine.new(["lib/foodcritic.rb"]).valid_paths? end it "returns true if both specified paths exist" do assert FoodCritic::CommandLine.new(["lib", "lib/foodcritic.rb"]).valid_paths? end it "returns false if any on the specified paths do not exist" do refute FoodCritic::CommandLine.new(["lib", "lib2"]).valid_paths? end end end foodcritic-3.0.3/spec/foodcritic/api_spec.rb0000644000004100000410000017105312263752452021100 0ustar www-datawww-datarequire_relative '../spec_helper' describe FoodCritic::Api do def parse_ast(str) api.send(:build_xml, Ripper::SexpBuilder.new(str).parse) end let(:api) { Object.new.extend(FoodCritic::Api) } describe :exposed_api do let(:ignorable_methods) do api.class.ancestors.map{|a| a.public_methods}.flatten.sort.uniq end it "exposes the expected api to rule authors" do (api.public_methods.sort - ignorable_methods).must_equal([ :attribute_access, :checks_for_chef_solo?, :chef_dsl_methods, :chef_node_methods, :chef_solo_search_supported?, :cookbook_name, :declared_dependencies, :field, :field_value, :file_match, :find_resources, :gem_version, :included_recipes, :literal_searches, :match, :notifications, :read_ast, :resource_action?, :resource_attribute, :resource_attribute?, :resource_attributes, :resource_attributes_by_type, :resource_name, :resource_type, :resources_by_type, :ruby_code?, :searches, :standard_cookbook_subdirs, :supported_platforms, :template_file, :template_paths, :templates_included, :valid_query? ]) end end describe "#attribute_access" do let(:ast) { MiniTest::Mock.new } it "returns empty if the provided ast does not support XPath" do api.attribute_access(nil, :type => :vivified).must_be_empty end it "returns empty if the provided ast has no matches" do ast.expect :xpath, [], [String] [:vivified, :string, :symbol].each do |access_type| api.attribute_access([], :type => :vivified).must_be_empty end end it "raises if the specified node type is not recognised" do ast.expect :xpath, [], [String] lambda do api.attribute_access(ast, :type => :cymbals) end.must_raise(ArgumentError) end it "does not raise if the specified node type is valid" do ast.expect :xpath, [], [/field/, FoodCritic::Api::AttFilter] ast.expect :xpath, [], [/symbol/, FoodCritic::Api::AttFilter] ast.expect :xpath, [], [/tstring_content/, FoodCritic::Api::AttFilter] [:vivified, :symbol, :string].each do |access_type| api.attribute_access(ast, :type => access_type) end end it "returns vivified attributes access" do call = MiniTest::Mock.new call.expect :xpath, [], [/args_add_block/] call.expect :xpath, ["node", "bar"], [/ident/] call.expect :xpath, ["foo"], [/@value/] ast.expect :xpath, [call], [String, FoodCritic::Api::AttFilter] api.attribute_access(ast, :type => :vivified).must_equal([call]) ast.verify call.verify end it "doesn't flag searching for a node by name as symbol access" do ast = parse_ast(%q{baz = search(:node, "name:#{node['foo']['bar']}")[0]}) api.attribute_access(ast, :type => :symbol).must_be_empty end describe :ignoring_attributes do it "doesn't ignore run_state by default for backwards compatibility" do ast = parse_ast("node.run_state['bar'] = 'baz'") api.attribute_access(ast).wont_be_empty end it "allows run_state to be ignored" do ast = parse_ast("node.run_state['bar'] = 'baz'") api.attribute_access(ast, :ignore => ['run_state']).must_be_empty end it "allows run_state to be ignored (symbols access)" do ast = parse_ast("node.run_state[:bar] = 'baz'") api.attribute_access(ast, :ignore => ['run_state']).must_be_empty end it "allows any attribute to be ignored" do ast = parse_ast("node['bar'] = 'baz'") api.attribute_access(ast, :ignore => ['bar']).must_be_empty end it "allows any attribute to be ignored (symbols access)" do ast = parse_ast("node[:bar] = 'baz'") api.attribute_access(ast, :ignore => ['bar']).must_be_empty end it "allows any attribute to be ignored (dot access)" do ast = parse_ast("node.bar = 'baz'") api.attribute_access(ast, :ignore => ['bar']).must_be_empty end it "includes the children of attributes" do ast = parse_ast("node['foo']['bar'] = 'baz'") api.attribute_access(ast).map{|a| a['value']}.must_equal(%w{foo bar}) end it "does not include children of removed attributes" do ast = parse_ast("node['foo']['bar'] = 'baz'") api.attribute_access(ast, :ignore => ['foo']).must_be_empty end it "coerces ignore values to enumerate them" do ast = parse_ast("node.run_state['bar'] = 'baz'") api.attribute_access(ast, :ignore => 'run_state').must_be_empty end it "can ignore multiple attributes" do ast = parse_ast(%q{ node['bar'] = 'baz' node.foo = 'baz' }) api.attribute_access(ast, :ignore => %w{foo bar}).must_be_empty end end end describe "#checks_for_chef_solo?" do let(:ast) { ast = MiniTest::Mock.new } it "raises if the provided ast does not support XPath" do lambda{api.checks_for_chef_solo?(nil)}.must_raise(ArgumentError) end it "returns false if there is no reference to chef solo" do ast.expect :xpath, [], [String] ast.expect :xpath, [], [String] refute api.checks_for_chef_solo?(ast) end it "returns true if there is one reference to chef solo" do ast.expect :xpath, ['aref'], [String] assert api.checks_for_chef_solo?(ast) end it "returns true if there are multiple references to chef solo" do ast.expect :xpath, ['aref', 'aref'], [String] assert api.checks_for_chef_solo?(ast) end end describe "#chef_solo_search_supported?" do it "returns false if the recipe path is nil" do refute api.chef_solo_search_supported?(nil) end it "returns false if the recipe path does not exist" do refute api.chef_solo_search_supported?('/tmp/non-existent-path') end end describe "#cookbook_name" do it "raises if passed a nil" do lambda{api.cookbook_name(nil)}.must_raise ArgumentError end it "raises if passed an empty string" do lambda{api.cookbook_name('')}.must_raise ArgumentError end it "returns the cookbook name when passed a recipe" do recipe_path = 'cookbooks/apache2/recipes/default.rb' api.cookbook_name(recipe_path).must_equal 'apache2' end it "returns the cookbook name when passed the cookbook metadata" do api.cookbook_name('cookbooks/apache2/metadata.rb').must_equal 'apache2' end it "returns the cookbook name when passed a template" do erb_path = 'cookbooks/apache2/templates/default/a2ensite.erb' api.cookbook_name(erb_path).must_equal 'apache2' end end describe "#declared_dependencies" do it "raises if the ast does not support XPath" do lambda{api.declared_dependencies(nil)}.must_raise ArgumentError end it "returns an empty if there are no declared dependencies" do ast = MiniTest::Mock.new 3.times do ast.expect :xpath, [], [String] end api.declared_dependencies(ast).must_be_empty end it "includes only cookbook names in the returned array" do ast = Nokogiri::XML(%q{ }) api.declared_dependencies(ast).must_equal ['mysql'] end end describe "#field" do describe :simple_ast do let(:ast){ parse_ast('name "webserver"') } it "raises if the field name is nil" do lambda{api.field(ast, nil)}.must_raise ArgumentError end it "raises if the field name is empty" do lambda{api.field(ast, '')}.must_raise ArgumentError end it "returns empty if the field is not present" do api.field(ast, :common_name).must_be_empty end it "accepts a string for the field name" do api.field(ast, 'name').wont_be_empty end it "accepts a symbol for the field name" do api.field(ast, :name).wont_be_empty end end it "returns fields when the value is an embedded string expression" do ast = parse_ast(%q{ name "#{foo}_#{bar}" }.strip) api.field(ast, :name).size.must_equal 1 end it "returns fields when the value is a method call" do ast = parse_ast(%q{ name generate_name }.strip) api.field(ast, :name).size.must_equal 1 end it "returns both fields if the field is specified twice" do ast = parse_ast(%q{ name "webserver" name "database" }.strip) api.field(ast, :name).size.must_equal 2 end end describe "#field_value" do describe :simple_ast do let(:ast){ parse_ast('name "webserver"') } it "raises if the field name is nil" do lambda{api.field_value(ast, nil)}.must_raise ArgumentError end it "raises if the field name is empty" do lambda{api.field_value(ast, '')}.must_raise ArgumentError end it "is falsy if the field is not present" do refute api.field_value(ast, :common_name) end it "accepts a string for the field name" do api.field_value(ast, 'name').must_equal 'webserver' end it "accepts a symbol for the field name" do api.field_value(ast, :name).must_equal 'webserver' end end it "is falsy when the value is an embedded string expression" do ast = parse_ast(%q{ name "#{foo}_#{bar}" }.strip) refute api.field_value(ast, :name) end it "is falsy when the value is a method call" do ast = parse_ast(%q{ name generate_name('foo') }.strip) refute api.field_value(ast, :name) end it "returns the last value if the field is specified twice" do ast = parse_ast(%q{ name "webserver" name "database" }.strip) api.field_value(ast, :name).must_equal 'database' end end describe "#file_match" do it "includes the provided filename in the match" do api.file_match("foo.rb")[:filename].must_equal "foo.rb" end it "retains the full provided filename path in the match" do api.file_match("foo/bar/foo.rb")[:filename].must_equal "foo/bar/foo.rb" end it "raises an error if the provided filename is nil" do lambda{api.file_match(nil)}.must_raise(ArgumentError) end it "sets the line and column to the beginning of the file" do match = api.file_match("bar.rb") match[:line].must_equal 1 match[:column].must_equal 1 end end describe "#find_resources" do let(:ast) { MiniTest::Mock.new } it "returns empty unless the ast supports XPath" do api.find_resources(nil).must_be_empty end it "restricts by resource type when provided" do ast.expect :xpath, ['method_add_block'], ["//method_add_block[command/ident[@value='file']]" + "[command/ident/@value != 'action']"] api.find_resources(ast, :type => 'file') ast.verify end it "does not restrict by resource type when not provided" do ast.expect :xpath, ['method_add_block'], ["//method_add_block[command/ident]" + "[command/ident/@value != 'action']"] api.find_resources(ast) ast.verify end it "allows resource type to be specified as :any" do ast.expect :xpath, ['method_add_block'], ["//method_add_block[command/ident]" + "[command/ident/@value != 'action']"] api.find_resources(ast, :type => :any) ast.verify end it "returns any matches" do ast.expect :xpath, ['method_add_block'], [String] api.find_resources(ast).must_equal ['method_add_block'] end end describe "#included_recipes" do it "raises if the ast does not support XPath" do lambda{api.included_recipes(nil)}.must_raise ArgumentError end it "returns an empty hash if there are no included recipes" do ast = MiniTest::Mock.new.expect :xpath, [], [String] api.included_recipes(ast).keys.must_be_empty end it "returns a hash keyed by recipe name" do ast = MiniTest::Mock.new.expect :xpath, [{'value' => 'foo::bar'}], [String] api.included_recipes(ast).keys.must_equal ['foo::bar'] end it "returns a hash where the values are the matching nodes" do ast = MiniTest::Mock.new.expect :xpath, [{'value' => 'foo::bar'}], [String] api.included_recipes(ast).values.must_equal [[{'value' => 'foo::bar'}]] end it "correctly keys an included recipe specified as a string literal" do api.included_recipes(parse_ast(%q{ include_recipe "foo::default" })).keys.must_equal ["foo::default"] end describe "embedded expression - recipe name" do let(:ast) do parse_ast(%q{ include_recipe "foo::#{bar}" }) end it "returns the literal string component by default" do api.included_recipes(ast).keys.must_equal ["foo::"] end it "returns the literal string part of the AST" do api.included_recipes(ast)['foo::'].first.must_respond_to(:xpath) end it "returns empty if asked to exclude statements with embedded expressions" do api.included_recipes(ast, :with_partial_names => false).must_be_empty end it "returns the literals if asked to include statements with embedded expressions" do api.included_recipes(ast, :with_partial_names => true).keys.must_equal ["foo::"] end end describe "embedded expression - cookbook name" do let(:ast) do parse_ast(%q{ include_recipe "#{foo}::bar" }) end it "returns the literal string component by default" do api.included_recipes(ast).keys.must_equal ["::bar"] end it "returns the literal string part of the AST" do api.included_recipes(ast)['::bar'].first.must_respond_to(:xpath) end it "returns empty if asked to exclude statements with embedded expressions" do api.included_recipes(ast, :with_partial_names => false).must_be_empty end end describe "embedded expression - partial cookbook name" do let(:ast) do parse_ast(%q{ include_recipe "#{foo}_foo::bar" }) end it "returns the literal string component by default" do api.included_recipes(ast).keys.must_equal ["_foo::bar"] end it "returns the literal string part of the AST" do api.included_recipes(ast)['_foo::bar'].first.must_respond_to(:xpath) end it "returns empty if asked to exclude statements with embedded expressions" do api.included_recipes(ast, :with_partial_names => false).must_be_empty end end end describe :AttFilter do describe "#is_att_type" do let(:filter) { FoodCritic::Api::AttFilter.new } it "returns empty if the argument is not enumerable" do filter.is_att_type(nil).must_be_empty end it "filters out values that are not Chef node attribute types" do nodes = %w{node node badger default override ostrich set normal} filter.is_att_type(nodes).uniq.size.must_equal 5 end it "returns all filtered nodes" do nodes = %w{node node override default normal set set override} filter.is_att_type(nodes).must_equal nodes end it "returns empty if there are no Chef node attribute types" do nodes = %w{squirrel badger pooh tigger} filter.is_att_type(nodes).must_be_empty end end end describe "#literal_searches" do let(:ast) { ast = MiniTest::Mock.new } it "returns empty if the AST does not support XPath expressions" do api.literal_searches(nil).must_be_empty end it "returns empty if the AST has no elements" do ast.expect :xpath, [], [String] api.literal_searches(ast).must_be_empty end it "returns the AST elements for each literal search" do ast.expect :xpath, ['tstring_content'], [String] api.literal_searches(ast).must_equal ['tstring_content'] end end describe "#match" do it "raises if the provided node is nil" do lambda{api.match(nil)}.must_raise(ArgumentError) end it "raises if the provided node does not support XPath" do lambda{api.match(Object.new)}.must_raise(ArgumentError) end it "returns nil if there is no nested position node" do node = MiniTest::Mock.new node.expect :xpath, [], ['descendant::pos'] api.match(node).must_be_nil end it "uses the position of the first position node if there are multiple" do node = MiniTest::Mock.new node.expect(:xpath, [{'name' => 'pos', 'line' => '1', 'column' => '10'}, {'name' => 'pos', 'line' => '3', 'column' => '16'}], ['descendant::pos']) match = api.match(node) match[:line].must_equal(1) match[:column].must_equal(10) end describe :matched_node_name do let(:node) do node = MiniTest::Mock.new node.expect :xpath, [{'name' => 'pos', 'line' => '1', 'column' => '10'}], ['descendant::pos'] node end it "includes the name of the node in the match" do node.expect :name, 'command' api.match(node).must_equal({:matched => 'command', :line => 1, :column => 10}) end it "sets the matched name to empty if the element does not have a name" do api.match(node).must_equal({:matched => '', :line => 1, :column => 10}) end end end describe "#notifications" do it "returns empty if the provided AST does not support XPath" do api.notifications(nil).must_be_empty end it "returns empty if there are no notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" end })).must_be_empty end describe "malformed syntax" do it "returns empty if no notifies value is provided" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies end })).must_be_empty end it "returns empty if no subscribes value is provided" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes end })).must_be_empty end it "returns empty if only the notifies action is provided" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart end })).must_be_empty end it "returns empty if only the subscribes action is provided" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart end })).must_be_empty end describe "returns empty if the service name is missing" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, resources(:service) end })).must_be_empty end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes:restart, resources(:service) end })).must_be_empty end it "new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, "service" end })).must_be_empty end it "new-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes:restart, "service" end })).must_be_empty end end describe "returns empty if the resource type is missing" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, resources("nscd") end })).must_be_empty end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, resources("nscd") end })).must_be_empty end it "new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, "nscd" end })).must_be_empty end it "new-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, "nscd" end })).must_be_empty end end describe "returns empty if the resource name is missing" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, resources(:service) end })).must_be_empty end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, resources(:service) end })).must_be_empty end it "new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, "service[]" end })).must_be_empty end it "new-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, "service[]" end })).must_be_empty end end it "returns empty if the left square bracket is missing" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, "servicefoo]" end })).must_be_empty end it "returns empty if the right square bracket is missing" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, "service[foo" end })).must_be_empty end end it "understands the old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, resources(:service => "nscd") end })).must_equal( [{ :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :old }] ) end it "understands old-style notifications with :'symbol' literals as action" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :'soft-restart', resources(:service => "nscd") end })).must_equal( [{ :type => :notifies, :action => :'soft-restart', :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :old }] ) end it "understands old-style notifications with added parentheses" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies(:restart, resources(:service => "nscd")) end })).must_equal( [{ :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :old }] ) end it "understands the old-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, resources(:service => "nscd") end })).must_equal( [{ :type => :subscribes, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :old }] ) end it "understands old-style subscriptions with added parentheses" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes(:restart, resources(:service => "nscd")) end })).must_equal( [{ :type => :subscribes, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :old }] ) end it "understands the new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, "service[nscd]" end })).must_equal( [{ :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :new }] ) end it "understands new-style notifications with :'symbol' literals as action" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :'soft-restart', "service[nscd]" end })).must_equal( [{ :type => :notifies, :action => :'soft-restart', :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :new }] ) end it "understands new-style notifications with added parentheses" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies(:restart, "service[nscd]") end })).must_equal( [{ :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :new }] ) end it "understands the new-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, "service[nscd]" end })).must_equal( [{ :type => :subscribes, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :new }] ) end it "understands new-style subscriptions with added parentheses" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes(:restart, "service[nscd]") end })).must_equal( [{ :type => :subscribes, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :new }] ) end describe "supports a resource both notifying and subscribing" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, resources(:service => "nscd") subscribes :create, resources(:template => "/etc/nscd.conf") end })).must_equal([ { :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :old }, { :type => :subscribes, :action => :create, :resource_type => :template, :resource_name => '/etc/nscd.conf', :timing => :delayed, :style => :old } ]) end it "new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, "service[nscd]" subscribes :create, "template[/etc/nscd.conf]" end })).must_equal([ { :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :new }, { :type => :subscribes, :action => :create, :resource_type => :template, :resource_name => '/etc/nscd.conf', :timing => :delayed, :style => :new } ]) end end it "understands the old-style notifications with timing" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, resources(:service => "nscd"), :immediately end })).must_equal( [{ :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :immediate, :style => :old }] ) end it "understands the old-style subscriptions with timing" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, resources(:service => "nscd"), :immediately end })).must_equal( [{ :type => :subscribes, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :immediate, :style => :old }] ) end it "understands the new-style notifications with timing" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, "service[nscd]", :immediately end })).must_equal( [{ :type => :notifies, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :immediate, :style => :new }] ) end it "understands the new-style subscriptions with timing" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, "service[nscd]", :immediately end })).must_equal( [{ :type => :subscribes, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :immediate, :style => :new }] ) end describe "can be passed an individual resource" do it "old-style notifications" do api.notifications(api.find_resources(parse_ast(%q{ service "nscd" do action :start end template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, resources(:service => "nscd") end }), :type => :template).first).must_equal([ {:type => :notifies, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :old} ]) end it "old-style subscriptions" do api.notifications(api.find_resources(parse_ast(%q{ service "nscd" do action :start end template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, resources(:service => "nscd") end }), :type => :template).first).must_equal([ {:type => :subscribes, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :old} ]) end it "new-style notifications" do api.notifications(api.find_resources(parse_ast(%q{ service "nscd" do action :start end template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :restart, "service[nscd]" end }), :type => :template).first).must_equal([ {:type => :notifies, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :new} ]) end it "new-style subscriptions" do api.notifications(api.find_resources(parse_ast(%q{ service "nscd" do action :start end template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :restart, "service[nscd]" end }), :type => :template).first).must_equal([ {:type => :subscribes, :action => :restart, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :new} ]) end end describe "supports multiple notifications on a single resource" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :stop, resources(:service => "nscd") notifies :start, resources(:service => "nscd") end })).must_equal( [ {:type => :notifies, :action => :stop, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :old}, {:type => :notifies, :action => :start, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :old} ] ) end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :stop, resources(:service => "nscd") subscribes :start, resources(:service => "nscd") end })).must_equal( [ {:type => :subscribes, :action => :stop, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :old}, {:type => :subscribes, :action => :start, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :old} ] ) end it "new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" notifies :stop, "service[nscd]" notifies :start, "service[nscd]" end })).must_equal( [ {:type => :notifies, :action => :stop, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :new}, {:type => :notifies, :action => :start, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :new} ] ) end it "new-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/nscd.conf" do source "nscd.conf" owner "root" group "root" subscribes :stop, "service[nscd]" subscribes :start, "service[nscd]" end })).must_equal( [ {:type => :subscribes, :action => :stop, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :new}, {:type => :subscribes, :action => :start, :resource_type => :service, :resource_name => 'nscd', :timing => :delayed, :style => :new} ] ) end end describe "understands notifications for an execute resource" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/tmp/foo.bar" do source "foo.bar.erb" notifies :run, resources(:execute => "foo") end })).must_equal( [{:type => :notifies, :action => :run, :resource_type => :execute, :resource_name => 'foo', :timing => :delayed, :style => :old}] ) end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/tmp/foo.bar" do source "foo.bar.erb" subscribes :run, resources(:execute => "foo") end })).must_equal( [{:type => :subscribes, :action => :run, :resource_type => :execute, :resource_name => 'foo', :timing => :delayed, :style => :old}] ) end it "old-style notifications" do api.notifications(parse_ast(%q{ template "/tmp/foo.bar" do source "foo.bar.erb" notifies :run, "execute[foo]" end })).must_equal( [{:type => :notifies, :action => :run, :resource_type => :execute, :resource_name => 'foo', :timing => :delayed, :style => :new}] ) end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/tmp/foo.bar" do source "foo.bar.erb" subscribes :run, "execute[foo]" end })).must_equal( [{:type => :subscribes, :action => :run, :resource_type => :execute, :resource_name => 'foo', :timing => :delayed, :style => :new}] ) end end describe "sets the notification timing to delayed if specified" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :run, resources(execute => "robespierre"), :delayed end })).first[:timing].must_equal(:delayed) end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do subscribes :run, resources(execute => "robespierre"), :delayed end })).first[:timing].must_equal(:delayed) end it "new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :run, "execute[robespierre]", :delayed end })).first[:timing].must_equal(:delayed) end it "new-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do subscribes :run, "execute[robespierre]", :delayed end })).first[:timing].must_equal(:delayed) end end describe "sets the notification timing to immediate if specified as immediate" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :run, resources(execute => "robespierre"), :immediate end })).first[:timing].must_equal(:immediate) end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do subscribes :run, resources(execute => "robespierre"), :immediate end })).first[:timing].must_equal(:immediate) end it "new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :run, "execute[robespierre]", :immediate end })).first[:timing].must_equal(:immediate) end it "new-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do subscribes :run, "execute[robespierre]", :immediate end })).first[:timing].must_equal(:immediate) end end describe "sets the notification timing to immediate if specified as immediately" do it "old-style notifications" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :run, resources(execute => "robespierre"), :immediately end })).first[:timing].must_equal(:immediate) end it "old-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do subscribes :run, resources(execute => "robespierre"), :immediately end })).first[:timing].must_equal(:immediate) end it "new-style notifications" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :run, "execute[robespierre]", :immediately end })).first[:timing].must_equal(:immediate) end it "new-style subscriptions" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do subscribes :run, "execute[robespierre]", :immediately end })).first[:timing].must_equal(:immediate) end end it "passes unrecognised notification timings through unchanged" do api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :run, resources(execute => "robespierre"), :forthwith end })).first[:timing].must_equal(:forthwith) end describe "resource names as expressions" do describe "returns the AST for an embedded string" do it "old-style notifications" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :create, resources(:template => "/etc/bar/#{resource}.bar") end })).first[:resource_name].respond_to?(:xpath), "Expected resource_name with string expression to respond to #xpath" end it "new-style notifications" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :create, "template[/etc/bar/#{resource}.bar]" end })).first[:resource_name].respond_to?(:xpath), "Expected resource_name with string expression to respond to #xpath" end it "new-style notifications - complete resource_name" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :create, "template[#{template_path}]" end })).first[:resource_name].respond_to?(:xpath), "Expected resource_name with string expression to respond to #xpath" end end describe "returns the AST for node attribute" do it "old-style notifications" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :restart, resources(:service => node['foo']['service']) end })).first[:resource_name].respond_to?(:xpath), "Expected resource_name with node attribute to respond to #xpath" end it "new-style notifications" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :restart, "service[#{node['foo']['service']}]" end })).first[:resource_name].respond_to?(:xpath), "Expected resource_name with node attribute to respond to #xpath" end end describe "returns the AST for variable reference" do it "old-style notifications" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :restart, resources(:service => my_service) end })).first[:resource_name].respond_to?(:xpath), "Expected resource_name with var ref to respond to #xpath" end it "new-style notifications" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :restart, "service[#{my_service}]" end })).first[:resource_name].respond_to?(:xpath), "Expected resource_name with var ref to respond to #xpath" end end end describe "mark style of notification" do it "specifies that the notification was in the old style" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :restart, resources(:service => 'foo') end })).first[:style].must_equal :old end it "specifies that the notification was in the new style" do assert api.notifications(parse_ast(%q{ template "/etc/foo.conf" do notifies :restart, "service[foo]" end })).first[:style].must_equal :new end end end describe "#read_ast" do it "raises if the file cannot be read" do lambda {api.read_ast(nil)}.must_raise(TypeError) end end describe "#resource_attribute" do let(:resource) do Class.new do def xpath(str) raise "Not expected" end end.new end it "raises if the resource does not support XPath" do lambda{api.resource_attribute(nil, "mode")}.must_raise ArgumentError end it "raises if the attribute name is empty" do lambda{api.resource_attribute(resource, "")}.must_raise ArgumentError end end describe "#resource_attributes" do def str_to_atts(str) api.resource_attributes(api.find_resources(parse_ast(str)).first) end it "raises if the resource does not support XPath" do lambda{api.resource_attributes(nil)}.must_raise ArgumentError end it "returns a string value for a literal string" do atts = str_to_atts(%q{ directory "/foo/bar" do owner "root" end }) atts['owner'].wont_be_nil atts['owner'].must_equal 'root' end it "returns a truthy value for a literal true" do atts = str_to_atts(%q{ directory "/foo/bar" do recursive true end }) atts['recursive'].wont_be_nil atts['recursive'].must_equal true end it "returns a truthy value for a literal false" do atts = str_to_atts(%q{ directory "/foo/bar" do recursive false end }) atts['recursive'].wont_be_nil atts['recursive'].must_equal false end it "decodes numeric attributes correctly" do atts = str_to_atts(%q{ directory "/foo/bar" do owner "root" mode 0755 end }) atts['mode'].wont_be_nil atts['mode'].must_equal "0755" end describe "block attributes" do it "includes attributes with brace block values in the result" do atts = str_to_atts(%q{ file "/etc/foo" do mode "0600" action :create only_if { File.exists?("/etc/bar") } end }) atts['only_if'].wont_be_nil atts['only_if'].must_respond_to :xpath atts['only_if'].name.must_equal 'brace_block' end it "includes attributes with do block values in the result" do atts = str_to_atts(%q{ file "/etc/foo" do mode "0600" action :create only_if do !File.exists?(foo) || (File.exists?(bar) && File.mtime(baz) < last_changedate) end end }) atts['only_if'].wont_be_nil atts['only_if'].must_respond_to :xpath atts['only_if'].name.must_equal 'do_block' end it "supports multiple block attributes" do atts = str_to_atts(%q{ file "/etc/foo" do mode "0600" action :create only_if { false } not_if { true } end }) atts['only_if'].wont_be_nil atts['only_if'].must_respond_to :xpath atts['only_if'].name.must_equal 'brace_block' atts['not_if'].wont_be_nil atts['not_if'].must_respond_to :xpath atts['not_if'].name.must_equal 'brace_block' end it "doesn't include method calls in ruby blocks" do atts = str_to_atts(%q{ ruby_block "example" do block do foo do |bar| Chef::Log.info(bar) end end only_if { true } not_if { false } end }) atts.keys.wont_include 'foo' atts['block'].wont_be_nil atts['block'].must_respond_to :xpath atts['block'].name.must_equal 'do_block' atts['only_if'].wont_be_nil atts['only_if'].must_respond_to :xpath atts['only_if'].name.must_equal 'brace_block' atts['not_if'].wont_be_nil atts['not_if'].must_respond_to :xpath atts['not_if'].name.must_equal 'brace_block' end it "includes notifications in the result" do atts = str_to_atts(%q{ template "/etc/httpd.conf" do notifies :restart, "service[apache]" end }) atts['notifies'].wont_be_nil atts['notifies'].must_respond_to :xpath atts['notifies'].name.must_equal 'args_add_block' end it "includes old-style notifications in the result" do atts = str_to_atts(%q{ template "/etc/httpd.conf" do notifies :restart, resources(:service => "apache") end }) atts['notifies'].wont_be_nil atts['notifies'].must_respond_to :xpath atts['notifies'].name.must_equal 'args_add_block' end end end describe "#resource_attributes_by_type" do it "raises if the ast does not support XPath" do lambda{api.resource_attributes_by_type(nil)}.must_raise ArgumentError end it "returns an empty hash if there are no resources" do ast = MiniTest::Mock.new.expect :xpath, [], [String] api.resource_attributes_by_type(ast).keys.must_be_empty end end describe "#resource_name" do it "raises if the resource does not support XPath" do lambda {api.resource_name('foo')}.must_raise ArgumentError end it "returns the resource name for a resource" do ast = MiniTest::Mock.new ast.expect :xpath, 'bob', [String] api.resource_name(ast).must_equal 'bob' end end describe "#resources_by_type" do it "raises if the ast does not support XPath" do lambda{api.resources_by_type(nil)}.must_raise ArgumentError end it "returns an empty hash if there are no resources" do ast = MiniTest::Mock.new.expect :xpath, [], [String] api.resources_by_type(ast).keys.must_be_empty end end describe "#resource_type" do it "raises if the resource does not support XPath" do lambda {api.resource_type(nil)}.must_raise ArgumentError end it "raises if the resource type cannot be determined" do ast = MiniTest::Mock.new ast.expect :xpath, '', [String] lambda {api.resource_type(ast)}.must_raise ArgumentError end it "returns the resource type for a resource" do ast = MiniTest::Mock.new ast.expect :xpath, 'directory', [String] api.resource_type(ast).must_equal 'directory' end end describe "#ruby_code?" do it "says a nil is not ruby code" do refute api.ruby_code?(nil) end it "says an empty string is not ruby code" do refute api.ruby_code?('') end it "coerces arguments to a string" do assert api.ruby_code?(%w{foo bar}) end it "returns true for a snippet of ruby code" do assert api.ruby_code?("assert api.ruby_code?(nil)") end it "returns false for a unix command" do refute api.ruby_code?("find -type f -print") end end describe "#searches" do let(:ast) { ast = MiniTest::Mock.new } it "returns empty if the AST does not support XPath expressions" do api.searches('not-an-ast').must_be_empty end it "returns empty if the AST has no elements" do ast.expect :xpath, [], [String] api.searches(ast).must_be_empty end it "returns the AST elements for each use of search" do ast.expect :xpath, ['ident'], [String] api.searches(ast).must_equal ['ident'] end end describe "#standard_cookbook_subdirs" do it "is enumerable" do api.standard_cookbook_subdirs.each{|s| s} end it "is sorted in alphabetical order" do api.standard_cookbook_subdirs.must_equal( api.standard_cookbook_subdirs.sort) end it "includes the directories generated by knife create cookbook" do %w{attributes definitions files libraries providers recipes resources templates}.each do |dir| api.standard_cookbook_subdirs.must_include dir end end it "does not include the spec directory" do api.standard_cookbook_subdirs.wont_include 'spec' end it "does not include a subdirectory of a subdirectory" do api.standard_cookbook_subdirs.wont_include 'default' end end describe "#supported_platforms" do def supports(str) api.supported_platforms(parse_ast(str)) end it "returns an empty if no platforms are specified as supported" do supports("name 'example'").must_be_empty end describe :ignored_support_declarations do it "should ignore supports without any arguments" do supports('supports').must_be_empty end it "should ignore supports where an embedded string expression is used" do supports('supports "red#{hat}"').must_be_empty end end it "returns the supported platform names if multiple are given" do supports(%q{ supports "redhat" supports "scientific" }).must_equal([{:platform => 'redhat', :versions => []}, {:platform => 'scientific', :versions => []}]) end it "sorts the platform names in alphabetical order" do supports(%q{ supports "scientific" supports "redhat" }).must_equal([{:platform => 'redhat', :versions => []}, {:platform => 'scientific', :versions => []}]) end it "handles support declarations that include version constraints" do supports(%q{ supports "redhat", '>= 6' }).must_equal([{:platform => 'redhat', :versions => ['>= 6']}]) end it "handles support declarations that include obsoleted version constraints" do supports(%q{ supports 'redhat', '> 5.0', '< 7.0' supports 'scientific', '> 5.0', '< 6.0' }).must_equal([{:platform => 'redhat', :versions => ['> 5.0', '< 7.0']}, {:platform => 'scientific', :versions => ['> 5.0', '< 6.0']}]) end it "normalises platform symbol references to strings" do supports(%q{ supports :ubuntu }).must_equal([{:platform => 'ubuntu', :versions => []}]) end it "handles support declarations as symbols that include version constraints" do supports(%q{ supports :redhat, '>= 6' }).must_equal([{:platform => 'redhat', :versions => ['>= 6']}]) end it "understands support declarations that use word lists" do supports(%q{ %w{redhat centos fedora}.each do |os| supports os end }).must_equal([{:platform => 'centos', :versions => []}, {:platform => 'fedora', :versions => []}, {:platform => 'redhat', :versions => []}]) end end describe "#templates_included" do def all_templates [ 'templates/default/main.erb', 'templates/default/included_1.erb', 'templates/default/included_2.erb' ] end def template_ast(content) parse_ast(FoodCritic::Template::ExpressionExtractor.new.extract( content).map{|e| e[:code]}.join(';')) end it "returns the path of the containing template when there are no partials" do ast = parse_ast('<%= foo.erb %>') api.stub :read_ast, ast do api.templates_included(['foo.erb'], 'foo.erb').must_equal ['foo.erb'] end end it "returns the path of the containing template and any partials" do api.instance_variable_set(:@asts, { :main => template_ast('<%= render "included_1.erb" %> <%= render "included_2.erb" %>'), :ok => template_ast('<%= @foo %>') }) def api.read_ast(path) case path when /main/ then @asts[:main] else @asts[:ok] end end api.templates_included(all_templates, 'templates/default/main.erb').must_equal( ['templates/default/main.erb', 'templates/default/included_1.erb', 'templates/default/included_2.erb'] ) end it "doesn't mistake render options for partial template names" do api.instance_variable_set(:@asts, { :main => template_ast('<%= render "included_1.erb", :variables => {:foo => "included_2.erb"} %>'), :ok => template_ast('<%= @foo %>') }) def api.read_ast(path) case path when /main/ then @asts[:main] else @asts[:ok] end end api.templates_included(all_templates, 'templates/default/main.erb').must_equal( ['templates/default/main.erb', 'templates/default/included_1.erb'] ) end it "raises if included partials have cycles" do api.instance_variable_set(:@asts, { :main => template_ast('<%= render "included_1.erb" %> <%= render "included_2.erb" %>'), :loop => template_ast('<%= render "main.erb" %>'), :ok => template_ast('<%= foo %>') }) def api.read_ast(path) case path when /main/ then @asts[:main] when /included_2/ then @asts[:loop] else @asts[:ok] end end err = lambda do api.templates_included(all_templates, 'templates/default/main.erb') end.must_raise(FoodCritic::Api::RecursedTooFarError) err.message.must_equal 'templates/default/main.erb' end end end foodcritic-3.0.3/spec/foodcritic/linter_spec.rb0000644000004100000410000000511712263752452021621 0ustar www-datawww-datarequire_relative '../spec_helper' describe FoodCritic::Linter do let(:linter) { FoodCritic::Linter.new } describe "#initialize" do it "is instantiable" do linter.wont_be_nil end end describe "chef version" do it "should be the latest stable version of Chef" do FoodCritic::Linter::DEFAULT_CHEF_VERSION.must_equal "11.4.0" end end describe "#check" do it "requires a cookbook_path, role_path or environment_path to be specified" do lambda{ linter.check({}) }.must_raise ArgumentError end [:cookbook, :role, :environment].each do |path_type| key = "#{path_type}_paths".to_sym it "requires a #{path_type}_path by itself not to be nil" do lambda{ linter.check(key => nil) }.must_raise ArgumentError end it "requires a #{path_type}_path by itself not to be empty" do lambda{ linter.check(key => []) }.must_raise ArgumentError end it "accepts a scalar with a single #{path_type} path" do linter.check(key => '.') end it "accepts an array of #{path_type} paths" do linter.check(key => ['.']) end it "returns a review when a #{path_type} path is provided" do linter.check(key => ['.']).must_respond_to(:warnings) end end end describe "#load_files!" do let(:default_rules_file) do File.expand_path(File.join(File.dirname(__FILE__), '../../lib/foodcritic/rules.rb')) end let(:rule_dsl_load_mock) { MiniTest::Mock.new } it "should add the default rule file" do rule_dsl_load_mock.expect(:call, nil, [[default_rules_file], nil]) verify_loaded end it "should include rules found in gems if the :search_gems option is true" do gem_rules = ['/path/to/rules1.rb', '/path/to/rules2.rb'] expected_rules = [default_rules_file, gem_rules].flatten rule_dsl_load_mock.expect(:call, nil, [expected_rules, nil]) metaclass = class << linter; self; end metaclass.send(:define_method, :rule_files_in_gems) do gem_rules end verify_loaded :search_gems => true end it "should include files found in :include_rules option" do include_rules = ['/path/to/rules1.rb', '/path/to/rules2.rb'] expected_rules = [default_rules_file, include_rules].flatten rule_dsl_load_mock.expect(:call, nil, [expected_rules, nil]) verify_loaded :include_rules => include_rules end def verify_loaded(options = {}) FoodCritic::RuleDsl.stub :load, rule_dsl_load_mock do linter.load_rules! options end rule_dsl_load_mock.verify end end end foodcritic-3.0.3/spec/foodcritic/template_spec.rb0000644000004100000410000000343112263752452022134 0ustar www-datawww-datarequire_relative '../spec_helper' describe FoodCritic::Template::ExpressionExtractor do let(:extractor){ FoodCritic::Template::ExpressionExtractor.new } describe "#expressions" do it "returns empty if the template is empty" do extractor.extract('').must_be_empty end it "returns empty if the template contains no erb at all" do extractor.extract(%q{ Hello World! }).must_be_empty end it "returns erb conditionals" do extractor.extract(%q{ <% if true %> Hello World! <% end %> }).must_equal([{:type => :statement, :code => 'if true', :line => 2}, {:type => :statement, :code => 'end', :line => 4}]) end it "does not evaluate erb statements" do extractor.extract(%q{ <% raise 'Should not have been evaluated' %> }) end it "extracts an expression from within the template" do extractor.extract(%q{ <%= foo %> }).must_equal([{:type => :expression, :code => 'foo', :line => 2}]) end it "does not evaluate erb expressions" do extractor.extract(%q{ <%= raise 'Should not have been evaluated' %> }) end it "extracts multiple expressions" do extractor.extract(%q{ " protocol="HTTP/1.1" connectionTimeout="20000" URIEncoding="UTF-8" redirectPort="<%= node["tomcat"]["ssl_port"] %>" /> }).must_equal([ {:type => :expression, :code => 'node["tomcat"]["port"]', :line => 2}, {:type => :expression, :code => 'node["tomcat"]["ssl_port"]', :line => 5} ]) end it "excludes comment-only expressions" do extractor.extract('<%# A comment %>').must_be_empty end end end foodcritic-3.0.3/spec/spec_helper.rb0000644000004100000410000000026412263752452017454 0ustar www-datawww-datarequire 'simplecov' SimpleCov.start do add_filter '/spec/' end require 'minitest/autorun' require 'minitest/pride' require 'minitest/spec' require_relative '../lib/foodcritic' foodcritic-3.0.3/spec/regression/0000755000004100000410000000000012263752452017014 5ustar www-datawww-datafoodcritic-3.0.3/spec/regression/cookbooks.txt0000644000004100000410000001475412263752452021561 0ustar www-datawww-data7-zip:5dad0850d7c8ad5e63a0ae655f1ee2b17adfcd12 activemq:5dce4ca5283d2a6252130a2d800b9387a57d6e01 ant:2bd97f4bb7c8bcd37ea3bb3615a5f306e65d80a0 apache2:29056c1a0a04cb718651ff0f522204ec651f94f0 apparmor:fd09a6fda4f6fc722d4c8d5b8a5c815feda280c0 application:da3eb5ac8fc20e9db7213c3b22f0a7856a73778c application_java:8aff84b60fb27c8fc228d86c6eca5949ba5a93a8 application_nginx:a67bc25b95d33565d2c368b41c46f7366fb2a1e4 application_php:08de9c64cd01b67e411f14f407254a36fed273c6 application_python:b738476bd7d37a0a1e10094da32c6a5f4759cdb6 application_ruby:812efe31df6c3c1607ed73f45e0adca7723b6c64 apt:ea834265247cc8b507ac37ab3a34a9b44ed27a11 ark:aa82cb6d9d83f12c3f4fa5969f56ce809529bf72 aws:a9530561bf559c6db2cb40a93b125607c5ef3efa bluepill:1d6422afcbc910e587c9639e4e0a28c72727c90b boost:14f30e36040a4fcd038f030d9ee1c7fb29b08b68 build-essential:0c636536fb1236f792974f3af38f2950a03ed4b2 chef:dac09eea9fa0d611b7b010160d6b8fa7f4d6ae1e chef-client:7fc4472c9913c9cb1762f979e05047a674318ef5 chef-server:d98b96d69962c7988b9640fe5bee09f771ba8977 chef_handler:d147ca9644f146b97a2d53324ca344321799b45f cloudkick:3f48cee9dc854914d002ea7e21380f60528583bd couchdb:cad1afe6cb51e31f6ad8f289a761d638fbfee8c2 cron:dce04363b6a02d36f8da88f202cedfae2daa6a2c daemontools:7ff23d4884138e957bef04a1e63e8c240020fcc1 database:1ab3822ca50824fbdc14f7c89341faa7ae1e90cb djbdns:d3b2dd6e0fe1faf6193d44b794685b59acaf2da2 dmg:11caf56f57a1168a891f01f0614a01b879aff624 drbd:e65b60894b48855163c3a13ead40fb897d66c4b8 dynect:5ef2328cc612cc4c36882742367af0e2bdbd0367 emacs:96d1026a6a6cdab979c7ef54fc27fe49b1f5d8ca erlang:58290537b49b495bc18e7a06d9d7560b4d239582 fail2ban:7b1939c9bc345f3a449545cb8e7ddb8190a6fe5f firewall:81a8db5a868f9f486ba694a7fe8eb969a2ae99d1 freebsd:f7a4457507caab966448f4e37709370df05d6167 gecode:87dc9114bf79e67b8eea9f2a0c42929040d08e4b gems:6f8c222cf8326b5266ca3c68344accbbf8d5c468 getting-started:ec6b8de327daa43403560a1204a2ac7645a3b959 git:f971753d7bac72c4decf2dddda8f9be5289ae324 glance:ce4ee4fbc75309e1f7eae8eda1841d8bd1a2d8ec gnu_parallel:ad31c1d7411686b8b54ce726d9cf8d864a33fcaf god:2e1691b7d9383a7f3fc6fe0ad285801a3397decb gunicorn:89be74c6b47bdb980ee1d98f9aae6b747f1d11e8 hadoop:eab8f63f9a47714a6ca05821285db6043dc7be5e haproxy:6b7a212d1c82ac420cba3335a31e32f346d149fa heartbeat:da496afa31286512a9b977974bec5ff51d6de9d8 homebrew:f42d8d09d8ae3d45f5bdb680dd52da351cb80e2e horizon:736422cecad62a939f1721df66b6388e9bc489de iis:ab7e4823d375e8eb4f927dee5b7ab0591301cb0e imagemagick:20aec29c45ee3c04616bb3fa3cd5ddf4baf48f00 iptables:da126cf900af3cc36bf212973bb8d0be69fa2b9f java:81d7d7f8f831405af1f42c8bb4230e6456b493be jetty:d165775c2c7ce3cc484cbe8c7aadf6649505d078 jira:328b662dbf07078fa5841035260ade016f3dd1f1 jpackage:23e6f4b717620455ee9d29cbf82d9a7ab7fa6e5b keepalived:629c8e4c5251f6125be9f6eacecb1369fcb1cd4c keystone:7d54242ac6edfffd1ed017914018a02d07ef5194 kickstart:6523fca008362ed72f8fbb25f0c7af70d563b96d logrotate:e1b6ee784954218652f817211e22fea9baf042f6 logwatch:706174796a3bc1d85d57d3aee792e78cb13570ac lvm:57bd5291fbaa41e7a13f25c4553cdacbfc3ad3dd man:f52cfeaa6a8ca0979eee235e6d9c7243104af2f5 maradns:e975ded4303432629ad37234cb7a05c9d6edcf73 maven:e486321f1e89f7ad2b9700c08fcbc68c32daa599 memcached:db13b6c4088e93faf995441df4aa856adc84c565 mercurial:5b8f95e1a8b74bc92d6b2e119e2cf31bc76ad059 motd-tail:e01096b73c387a46302f63ae6f838fac94e0ca81 munin:ac753f2ff5be33473a36c9b22625d0d7a47f485a mysql:1709b1ea22339a0c829cf5ced8c5a7ed4a186615 nagios:a21ac7b3ee2384b31ffdee7986ba2891235bd845 nginx:638280b3125e68d0903a60b167206f9be5bc2cca nova:04417ae3bca444b6870f3551ad3528c3ba661d0c nscd:28f37aaf70228c0f5b55c36b78bf3fbd56cb3112 ntp:288935754b2c25017e3e0890ffb1a35b2a9f4668 ohai:8ad8c92b14d5198ffa5ebd094acd83ba0c5c828c openldap:2f21ae90544b4f938e554f914955e3fac1a885de openssh:a61b47fb0efbdab731e7929506bb1dc6902f0091 openssl:7f5b84a942f015191ade6badf65a49f1fe7b05b1 openvpn:1d9838ca3cec981e1ab78d1160821d77f26978b3 ossec:44dddb496e595d200c802b515adfd4ac2e497647 pacman:77efa35dca9e53bc6c67773b217df645429e53f4 partial_search:9a96d68a4af2eff1cf5d3e8ed7ff2ede723a09c8 passenger_apache2:793f7bbaac7a883d5f9ef1414260718e33958ae8 pdns:bf14786602b43a15025275c1acf73a52eac9d577 perl:bd6f978aea0ad7e65a8e6266951476b717a9a074 php:f3f5db8d823db821ac696f7b52b2a613c1e2f167 postfix:d7d149e7a7235b2733455e524d86e3a984b9b97c postgresql:cdeb1ccca7cfd5564706315a8d95986658b5c300 powershell:4b175affe1a8a7d091a8ca905a580bf975af5edc pxe_dust:8f2e8ebd9f41086fe1033a613197da357aa075b5 python:34cb929504f9972d9d0ce66cad70254d3ab36f21 rabbitmq:b297e3137c37d3ed9a4e4fc17f9fc6a56e9a98f4 radiant:5bc888a4dfa3cc5f397a196706434bae12ff61b3 reprepro:30bc7be95a03f16dc042de3b5605a0e8b5153a4e resolver:105ad0a2fc9c065a7c4455cfc07ab7771b8e0da0 rsync:41756f404fc39f3ce407cce9fe03294dd907c0fe rsyslog:8830d558d2ee3126fef56ea3a25a4f0253ce269f runit:378c918b78a7e5f0819211fc8bce034ee071dcc9 samba:c68e51b0bfaf8770a3e89224858aa0a095dd725a sbuild:ce41bcfdf06baf35c6e0c254c6f39a823d350b05 screen:ba61c6529958decb2ebcc133c198cf37b16b8aaa selinux:7a1b10b4f3191272c07bc3a8efcd7f50dda52d18 snort:e829f5e2a8d7c5dd8799216371692b07fd6f636f sql_server:d9702f8fc29f208c9e712627cda64ccae2d71321 sqlite:3efb50f4166f04f1afefa21f7f8fe7e9082b37ed ssh_known_hosts:a89f0c32e8e2c408a2e153153cc703f1184c6b72 stompserver:bf81830bb7783f4198565201c825c23267e1d515 subversion:cad4c069deca1fbbfb6b8f4d21b6c341cc9c6b55 sudo:00d024f293afb9df4fea23ba127529d67c1daf14 supervisor:83d4e59560cf35050819b12a6625b4c43753fbd3 swift:73c8bf74330a07850645c9e2115596781681e6fc tftp:f4016b14eae2c0fe7fb48020bf28039c2de043a4 thrift:f7e0f2ec87b1e7bf382870b785cf74973bdbc9f8 tmux:d023930b19325d3366a12174f9df227a95ca5fcd tomcat:8934392833cef89b7b779b4cd36ad46d088b643b trac:7c5d613102701a88c51af80b9f492a9adc5c8f93 transmission:c3d62aa4741a55b693630d9cc48b012ff22d2e7b ubuntu:7d21b626873ee397755d59aa222cf7fa681f6e90 ucspi-tcp:6140c33bbffdce20c94409485de3f42de4861a09 ufw:6bc6de62a84f6fa6f172edf0a490f1a332e89e29 unicorn:bacbb2400dcb476dd53784aa965fa9329e8c3869 users:c51c96afca83b382678dc21b8deb25677e6a3d8a varnish:359ce3329f576884815b4146dc889970c8908e40 vim:88e8d018267d2cd5cfa3260ce55a0025f52dae6f webpi:6cb4fde9dedf2abc980fa49880753512baa26b23 whitelist-node-attrs:2d76a2d179096e3ab048547d0d7849238ac2a5d3 windows:1601558f5fce30bed47bfc6d458a80891e127c61 wix:422b8da1dcf706bb4742d83abc44a649522afe83 wordpress:e159cf1147107c7dffdccf676b8dda4faa507259 xfs:7f1033820459324a863b2955e774cfa366fbc70f xml:0b538834aa26c4df5918aa193029d285d7b1d4de yum:b1191511b011790b2fc5c35cfbc78d0cc7bbc5b8 zenoss:d2bbe7fc3d4fdade89b324ab856b156c0c3cf8cc zlib:45342f78d2866c3b2f443e693df562317e37963d zsh:3bff82836677564478ffc90dfb487ffc986702f3 foodcritic-3.0.3/spec/regression/expected-output.txt0000644000004100000410000012507012263752452022721 0ustar www-datawww-dataFC002: Avoid string interpolation where not required: ./ant/resources/library.rb:29 FC002: Avoid string interpolation where not required: ./application_php/templates/default/php.conf.erb:3 FC002: Avoid string interpolation where not required: ./application_python/providers/gunicorn.rb:80 FC002: Avoid string interpolation where not required: ./ark/libraries/provider_ark.rb:247 FC002: Avoid string interpolation where not required: ./ark/libraries/provider_ark.rb:249 FC002: Avoid string interpolation where not required: ./ark/libraries/provider_ark.rb:263 FC002: Avoid string interpolation where not required: ./chef-client/recipes/cron.rb:103 FC002: Avoid string interpolation where not required: ./dynect/recipes/ec2.rb:70 FC002: Avoid string interpolation where not required: ./gems/recipes/mirror.rb:23 FC002: Avoid string interpolation where not required: ./gems/recipes/server.rb:44 FC002: Avoid string interpolation where not required: ./iis/providers/site.rb:36 FC002: Avoid string interpolation where not required: ./java/providers/ark.rb:172 FC002: Avoid string interpolation where not required: ./mysql/attributes/server.rb:205 FC002: Avoid string interpolation where not required: ./mysql/attributes/server.rb:206 FC002: Avoid string interpolation where not required: ./mysql/attributes/server.rb:207 FC002: Avoid string interpolation where not required: ./mysql/attributes/server.rb:208 FC002: Avoid string interpolation where not required: ./nagios/recipes/apache.rb:25 FC002: Avoid string interpolation where not required: ./nagios/recipes/server.rb:48 FC002: Avoid string interpolation where not required: ./nagios/recipes/server.rb:180 FC002: Avoid string interpolation where not required: ./pacman/providers/aur.rb:29 FC002: Avoid string interpolation where not required: ./pacman/providers/aur.rb:31 FC002: Avoid string interpolation where not required: ./pacman/providers/aur.rb:72 FC002: Avoid string interpolation where not required: ./pacman/providers/aur.rb:90 FC002: Avoid string interpolation where not required: ./passenger_apache2/templates/default/passenger_web_app.conf.erb:3 FC002: Avoid string interpolation where not required: ./passenger_apache2/templates/default/web_app.conf.erb:3 FC002: Avoid string interpolation where not required: ./perl/recipes/default.rb:37 FC002: Avoid string interpolation where not required: ./perl/recipes/default.rb:43 FC002: Avoid string interpolation where not required: ./pxe_dust/recipes/bootstrap_template.rb:89 FC002: Avoid string interpolation where not required: ./pxe_dust/recipes/installers.rb:57 FC002: Avoid string interpolation where not required: ./pxe_dust/recipes/installers.rb:60 FC002: Avoid string interpolation where not required: ./pxe_dust/recipes/installers.rb:64 FC002: Avoid string interpolation where not required: ./python/providers/pip.rb:158 FC002: Avoid string interpolation where not required: ./python/providers/pip.rb:159 FC002: Avoid string interpolation where not required: ./python/providers/virtualenv.rb:63 FC002: Avoid string interpolation where not required: ./python/providers/virtualenv.rb:64 FC002: Avoid string interpolation where not required: ./radiant/recipes/default.rb:57 FC002: Avoid string interpolation where not required: ./radiant/recipes/default.rb:61 FC002: Avoid string interpolation where not required: ./radiant/templates/default/radiant.conf.erb:3 FC002: Avoid string interpolation where not required: ./rsyslog/recipes/default.rb:24 FC002: Avoid string interpolation where not required: ./rsyslog/recipes/default.rb:63 FC002: Avoid string interpolation where not required: ./sbuild/definitions/sbuild_lv.rb:30 FC002: Avoid string interpolation where not required: ./windows/libraries/registry_helper.rb:99 FC002: Avoid string interpolation where not required: ./windows/libraries/registry_helper.rb:173 FC002: Avoid string interpolation where not required: ./windows/libraries/windows_privileged.rb:42 FC002: Avoid string interpolation where not required: ./windows/libraries/windows_privileged.rb:56 FC002: Avoid string interpolation where not required: ./wordpress/recipes/default.rb:66 FC002: Avoid string interpolation where not required: ./wordpress/recipes/default.rb:148 FC002: Avoid string interpolation where not required: ./wordpress/templates/default/wordpress.conf.erb:3 FC002: Avoid string interpolation where not required: ./zenoss/providers/zendmd.rb:4 FC002: Avoid string interpolation where not required: ./zenoss/recipes/server.rb:164 FC003: Check whether you are running with chef server before using server-specific features: ./application/libraries/default.rb:97 FC003: Check whether you are running with chef server before using server-specific features: ./application_ruby/providers/memcached.rb:28 FC003: Check whether you are running with chef server before using server-specific features: ./database/recipes/ebs_backup.rb:33 FC003: Check whether you are running with chef server before using server-specific features: ./database/recipes/ebs_volume.rb:49 FC003: Check whether you are running with chef server before using server-specific features: ./database/recipes/master.rb:30 FC003: Check whether you are running with chef server before using server-specific features: ./database/recipes/master.rb:57 FC003: Check whether you are running with chef server before using server-specific features: ./drbd/recipes/pair.rb:31 FC003: Check whether you are running with chef server before using server-specific features: ./haproxy/recipes/app_lb.rb:20 FC003: Check whether you are running with chef server before using server-specific features: ./heartbeat/providers/default.rb:22 FC003: Check whether you are running with chef server before using server-specific features: ./munin/recipes/client.rb:20 FC003: Check whether you are running with chef server before using server-specific features: ./munin/recipes/server.rb:36 FC003: Check whether you are running with chef server before using server-specific features: ./munin/recipes/server.rb:37 FC003: Check whether you are running with chef server before using server-specific features: ./nagios/recipes/apache.rb:26 FC003: Check whether you are running with chef server before using server-specific features: ./nagios/recipes/client.rb:31 FC003: Check whether you are running with chef server before using server-specific features: ./nagios/recipes/client.rb:35 FC003: Check whether you are running with chef server before using server-specific features: ./nagios/recipes/server.rb:49 FC003: Check whether you are running with chef server before using server-specific features: ./nagios/recipes/server.rb:78 FC003: Check whether you are running with chef server before using server-specific features: ./nagios/recipes/server.rb:80 FC003: Check whether you are running with chef server before using server-specific features: ./nagios/recipes/server.rb:93 FC003: Check whether you are running with chef server before using server-specific features: ./nagios/recipes/server.rb:102 FC003: Check whether you are running with chef server before using server-specific features: ./nagios/recipes/server.rb:119 FC003: Check whether you are running with chef server before using server-specific features: ./nagios/recipes/server.rb:131 FC003: Check whether you are running with chef server before using server-specific features: ./nagios/recipes/server.rb:143 FC003: Check whether you are running with chef server before using server-specific features: ./nagios/recipes/server.rb:155 FC003: Check whether you are running with chef server before using server-specific features: ./nagios/recipes/server.rb:177 FC003: Check whether you are running with chef server before using server-specific features: ./nagios/recipes/server.rb:180 FC003: Check whether you are running with chef server before using server-specific features: ./openvpn/recipes/users.rb:20 FC003: Check whether you are running with chef server before using server-specific features: ./ossec/recipes/client.rb:25 FC003: Check whether you are running with chef server before using server-specific features: ./ossec/recipes/server.rb:31 FC003: Check whether you are running with chef server before using server-specific features: ./partial_search/libraries/partial_search.rb:65 FC003: Check whether you are running with chef server before using server-specific features: ./resolver/recipes/from_server_role.rb:21 FC003: Check whether you are running with chef server before using server-specific features: ./samba/recipes/server.rb:32 FC003: Check whether you are running with chef server before using server-specific features: ./sbuild/recipes/default.rb:56 FC003: Check whether you are running with chef server before using server-specific features: ./ssh_known_hosts/recipes/default.rb:23 FC003: Check whether you are running with chef server before using server-specific features: ./ufw/recipes/databag.rb:32 FC003: Check whether you are running with chef server before using server-specific features: ./zenoss/recipes/client.rb:41 FC003: Check whether you are running with chef server before using server-specific features: ./zenoss/recipes/server.rb:129 FC003: Check whether you are running with chef server before using server-specific features: ./zenoss/recipes/server.rb:186 FC003: Check whether you are running with chef server before using server-specific features: ./zenoss/recipes/server.rb:213 FC004: Use a service resource to start and stop services: ./runit/recipes/default.rb:22 FC005: Avoid repetition of resource declarations: ./apache2/recipes/default.rb:131 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./apache2/recipes/logrotate.rb:25 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./apache2/recipes/mod_auth_openid.rb:35 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./boost/recipes/source.rb:1 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./build-essential/recipes/default.rb:65 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./chef-client/recipes/service.rb:197 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./chef-client/recipes/service.rb:209 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./chef-client/recipes/service.rb:223 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./chef-server/recipes/dev.rb:16 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./mysql/recipes/client.rb:42 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./postgresql/recipes/ppa_pitti_postgresql.rb:1 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./postgresql/recipes/ruby.rb:30 FC007: Ensure recipe dependencies are reflected in cookbook metadata: ./tmux/recipes/package.rb:2 FC009: Resource attribute not recognised: ./chef-server/recipes/default.rb:46 FC013: Use file_cache_path rather than hard-coding tmp paths: ./zenoss/providers/zenpack.rb:30 FC014: Consider extracting long ruby_block to library: ./java/recipes/openjdk.rb:51 FC014: Consider extracting long ruby_block to library: ./lvm/providers/logical_volume.rb:18 FC014: Consider extracting long ruby_block to library: ./pxe_dust/recipes/bootstrap_template.rb:77 FC015: Consider converting definition to a LWRP: apache2/definitions/apache_conf.rb:1 FC015: Consider converting definition to a LWRP: apache2/definitions/apache_module.rb:1 FC015: Consider converting definition to a LWRP: apache2/definitions/apache_site.rb:1 FC015: Consider converting definition to a LWRP: apache2/definitions/web_app.rb:1 FC015: Consider converting definition to a LWRP: god/definitions/god_monitor.rb:1 FC015: Consider converting definition to a LWRP: iptables/definitions/iptables_rule.rb:1 FC015: Consider converting definition to a LWRP: logrotate/definitions/logrotate_app.rb:1 FC015: Consider converting definition to a LWRP: memcached/definitions/memcached_instance.rb:1 FC015: Consider converting definition to a LWRP: munin/definitions/munin_plugin.rb:1 FC015: Consider converting definition to a LWRP: nagios/definitions/nagios_conf.rb:1 FC015: Consider converting definition to a LWRP: nginx/definitions/nginx_site.rb:1 FC015: Consider converting definition to a LWRP: perl/definitions/cpan_module.rb:1 FC015: Consider converting definition to a LWRP: runit/definitions/runit_service.rb:1 FC015: Consider converting definition to a LWRP: sbuild/definitions/sbuild_lv.rb:1 FC015: Consider converting definition to a LWRP: unicorn/definitions/unicorn_config.rb:1 FC016: LWRP does not declare a default action: ./application_java/resources/java_webapp.rb:1 FC016: LWRP does not declare a default action: ./application_java/resources/tomcat.rb:1 FC016: LWRP does not declare a default action: ./application_nginx/resources/nginx_load_balancer.rb:1 FC016: LWRP does not declare a default action: ./application_php/resources/mod_php_apache2.rb:1 FC016: LWRP does not declare a default action: ./application_php/resources/php.rb:1 FC016: LWRP does not declare a default action: ./application_python/resources/celery.rb:1 FC016: LWRP does not declare a default action: ./application_python/resources/django.rb:1 FC016: LWRP does not declare a default action: ./application_python/resources/gunicorn.rb:1 FC016: LWRP does not declare a default action: ./application_ruby/resources/memcached.rb:1 FC016: LWRP does not declare a default action: ./application_ruby/resources/passenger_apache2.rb:1 FC016: LWRP does not declare a default action: ./application_ruby/resources/rails.rb:1 FC016: LWRP does not declare a default action: ./application_ruby/resources/unicorn.rb:1 FC016: LWRP does not declare a default action: ./dynect/resources/rr.rb:1 FC016: LWRP does not declare a default action: ./heartbeat/resources/ipaddr.rb:1 FC016: LWRP does not declare a default action: ./mercurial/resources/default.rb:1 FC016: LWRP does not declare a default action: ./pacman/resources/aur.rb:1 FC016: LWRP does not declare a default action: ./pacman/resources/group.rb:1 FC016: LWRP does not declare a default action: ./python/resources/pip.rb:1 FC016: LWRP does not declare a default action: ./python/resources/virtualenv.rb:1 FC016: LWRP does not declare a default action: ./samba/resources/user.rb:1 FC016: LWRP does not declare a default action: ./transmission/resources/torrent_file.rb:1 FC016: LWRP does not declare a default action: ./zenoss/resources/zenbatchload.rb:1 FC016: LWRP does not declare a default action: ./zenoss/resources/zendmd.rb:1 FC016: LWRP does not declare a default action: ./zenoss/resources/zenpack.rb:1 FC016: LWRP does not declare a default action: ./zenoss/resources/zenpatch.rb:1 FC017: LWRP does not notify when updated: ./application/providers/default.rb:23 FC017: LWRP does not notify when updated: ./application/providers/default.rb:33 FC017: LWRP does not notify when updated: ./application/providers/default.rb:43 FC017: LWRP does not notify when updated: ./application_java/providers/java_webapp.rb:25 FC017: LWRP does not notify when updated: ./application_java/providers/tomcat.rb:22 FC017: LWRP does not notify when updated: ./application_java/providers/tomcat.rb:34 FC017: LWRP does not notify when updated: ./application_nginx/providers/nginx_load_balancer.rb:23 FC017: LWRP does not notify when updated: ./application_nginx/providers/nginx_load_balancer.rb:37 FC017: LWRP does not notify when updated: ./application_php/providers/mod_php_apache2.rb:22 FC017: LWRP does not notify when updated: ./application_php/providers/mod_php_apache2.rb:46 FC017: LWRP does not notify when updated: ./application_php/providers/php.rb:22 FC017: LWRP does not notify when updated: ./application_php/providers/php.rb:31 FC017: LWRP does not notify when updated: ./application_python/providers/celery.rb:23 FC017: LWRP does not notify when updated: ./application_python/providers/celery.rb:50 FC017: LWRP does not notify when updated: ./application_python/providers/django.rb:25 FC017: LWRP does not notify when updated: ./application_python/providers/django.rb:36 FC017: LWRP does not notify when updated: ./application_python/providers/django.rb:44 FC017: LWRP does not notify when updated: ./application_python/providers/django.rb:70 FC017: LWRP does not notify when updated: ./application_python/providers/gunicorn.rb:25 FC017: LWRP does not notify when updated: ./application_python/providers/gunicorn.rb:46 FC017: LWRP does not notify when updated: ./application_python/providers/gunicorn.rb:91 FC017: LWRP does not notify when updated: ./application_ruby/providers/memcached.rb:20 FC017: LWRP does not notify when updated: ./application_ruby/providers/memcached.rb:26 FC017: LWRP does not notify when updated: ./application_ruby/providers/passenger_apache2.rb:22 FC017: LWRP does not notify when updated: ./application_ruby/providers/passenger_apache2.rb:40 FC017: LWRP does not notify when updated: ./application_ruby/providers/rails.rb:21 FC017: LWRP does not notify when updated: ./application_ruby/providers/rails.rb:44 FC017: LWRP does not notify when updated: ./application_ruby/providers/rails.rb:54 FC017: LWRP does not notify when updated: ./application_ruby/providers/rails.rb:108 FC017: LWRP does not notify when updated: ./application_ruby/providers/unicorn.rb:23 FC017: LWRP does not notify when updated: ./application_ruby/providers/unicorn.rb:54 FC017: LWRP does not notify when updated: ./apt/providers/repository.rb:124 FC017: LWRP does not notify when updated: ./cron/providers/d.rb:1 FC017: LWRP does not notify when updated: ./dmg/providers/package.rb:27 FC017: LWRP does not notify when updated: ./firewall/providers/rule_ufw.rb:23 FC017: LWRP does not notify when updated: ./firewall/providers/rule_ufw.rb:27 FC017: LWRP does not notify when updated: ./firewall/providers/rule_ufw.rb:31 FC017: LWRP does not notify when updated: ./heartbeat/providers/default.rb:20 FC017: LWRP does not notify when updated: ./homebrew/providers/tap.rb:13 FC017: LWRP does not notify when updated: ./homebrew/providers/tap.rb:21 FC017: LWRP does not notify when updated: ./iis/providers/app.rb:26 FC017: LWRP does not notify when updated: ./iis/providers/app.rb:40 FC017: LWRP does not notify when updated: ./iis/providers/app.rb:57 FC017: LWRP does not notify when updated: ./iis/providers/config.rb:27 FC017: LWRP does not notify when updated: ./iis/providers/pool.rb:27 FC017: LWRP does not notify when updated: ./iis/providers/pool.rb:41 FC017: LWRP does not notify when updated: ./iis/providers/pool.rb:68 FC017: LWRP does not notify when updated: ./iis/providers/pool.rb:78 FC017: LWRP does not notify when updated: ./iis/providers/pool.rb:88 FC017: LWRP does not notify when updated: ./iis/providers/pool.rb:98 FC017: LWRP does not notify when updated: ./iis/providers/pool.rb:106 FC017: LWRP does not notify when updated: ./iis/providers/site.rb:26 FC017: LWRP does not notify when updated: ./iis/providers/site.rb:50 FC017: LWRP does not notify when updated: ./iis/providers/site.rb:84 FC017: LWRP does not notify when updated: ./iis/providers/site.rb:94 FC017: LWRP does not notify when updated: ./iis/providers/site.rb:104 FC017: LWRP does not notify when updated: ./iis/providers/site.rb:114 FC017: LWRP does not notify when updated: ./lvm/providers/physical_volume.rb:6 FC017: LWRP does not notify when updated: ./maven/providers/default.rb:61 FC017: LWRP does not notify when updated: ./maven/providers/default.rb:65 FC017: LWRP does not notify when updated: ./pacman/providers/aur.rb:24 FC017: LWRP does not notify when updated: ./pacman/providers/aur.rb:98 FC017: LWRP does not notify when updated: ./php/providers/pear_channel.rb:31 FC017: LWRP does not notify when updated: ./php/providers/pear_channel.rb:40 FC017: LWRP does not notify when updated: ./php/providers/pear_channel.rb:69 FC017: LWRP does not notify when updated: ./powershell/providers/default.rb:19 FC017: LWRP does not notify when updated: ./rsync/providers/serve.rb:65 FC017: LWRP does not notify when updated: ./rsync/providers/serve.rb:69 FC017: LWRP does not notify when updated: ./sudo/providers/default.rb:102 FC017: LWRP does not notify when updated: ./supervisor/providers/fcgi.rb:21 FC017: LWRP does not notify when updated: ./supervisor/providers/fcgi.rb:38 FC017: LWRP does not notify when updated: ./supervisor/providers/fcgi.rb:50 FC017: LWRP does not notify when updated: ./supervisor/providers/fcgi.rb:56 FC017: LWRP does not notify when updated: ./supervisor/providers/fcgi.rb:62 FC017: LWRP does not notify when updated: ./supervisor/providers/fcgi.rb:68 FC017: LWRP does not notify when updated: ./supervisor/providers/group.rb:21 FC017: LWRP does not notify when updated: ./supervisor/providers/group.rb:38 FC017: LWRP does not notify when updated: ./supervisor/providers/group.rb:50 FC017: LWRP does not notify when updated: ./supervisor/providers/group.rb:56 FC017: LWRP does not notify when updated: ./supervisor/providers/group.rb:62 FC017: LWRP does not notify when updated: ./supervisor/providers/group.rb:68 FC017: LWRP does not notify when updated: ./supervisor/providers/service.rb:21 FC017: LWRP does not notify when updated: ./supervisor/providers/service.rb:38 FC017: LWRP does not notify when updated: ./supervisor/providers/service.rb:50 FC017: LWRP does not notify when updated: ./supervisor/providers/service.rb:56 FC017: LWRP does not notify when updated: ./supervisor/providers/service.rb:62 FC017: LWRP does not notify when updated: ./supervisor/providers/service.rb:68 FC017: LWRP does not notify when updated: ./webpi/providers/product.rb:26 FC017: LWRP does not notify when updated: ./windows/providers/auto_run.rb:21 FC017: LWRP does not notify when updated: ./windows/providers/auto_run.rb:27 FC017: LWRP does not notify when updated: ./windows/providers/batch.rb:24 FC017: LWRP does not notify when updated: ./windows/providers/package.rb:35 FC017: LWRP does not notify when updated: ./windows/providers/package.rb:53 FC017: LWRP does not notify when updated: ./windows/providers/package.rb:64 FC017: LWRP does not notify when updated: ./windows/providers/pagefile.rb:24 FC017: LWRP does not notify when updated: ./windows/providers/pagefile.rb:66 FC017: LWRP does not notify when updated: ./windows/providers/path.rb:21 FC017: LWRP does not notify when updated: ./windows/providers/path.rb:29 FC017: LWRP does not notify when updated: ./windows/providers/reboot.rb:21 FC017: LWRP does not notify when updated: ./windows/providers/reboot.rb:27 FC017: LWRP does not notify when updated: ./windows/providers/registry.rb:27 FC017: LWRP does not notify when updated: ./windows/providers/registry.rb:31 FC017: LWRP does not notify when updated: ./windows/providers/registry.rb:35 FC017: LWRP does not notify when updated: ./windows/providers/registry.rb:61 FC017: LWRP does not notify when updated: ./windows/providers/task.rb:24 FC017: LWRP does not notify when updated: ./windows/providers/task.rb:43 FC017: LWRP does not notify when updated: ./windows/providers/task.rb:58 FC017: LWRP does not notify when updated: ./windows/providers/task.rb:75 FC017: LWRP does not notify when updated: ./windows/providers/zipfile.rb:27 FC017: LWRP does not notify when updated: ./windows/providers/zipfile.rb:44 FC017: LWRP does not notify when updated: ./yum/providers/key.rb:25 FC017: LWRP does not notify when updated: ./yum/providers/repository.rb:28 FC017: LWRP does not notify when updated: ./yum/providers/repository.rb:45 FC017: LWRP does not notify when updated: ./zenoss/providers/zenbatchload.rb:2 FC017: LWRP does not notify when updated: ./zenoss/providers/zendmd.rb:2 FC017: LWRP does not notify when updated: ./zenoss/providers/zendmd.rb:33 FC017: LWRP does not notify when updated: ./zenoss/providers/zendmd.rb:63 FC017: LWRP does not notify when updated: ./zenoss/providers/zendmd.rb:77 FC017: LWRP does not notify when updated: ./zenoss/providers/zendmd.rb:88 FC017: LWRP does not notify when updated: ./zenoss/providers/zendmd.rb:97 FC017: LWRP does not notify when updated: ./zenoss/providers/zenpatch.rb:1 FC018: LWRP uses deprecated notification syntax: ./pacman/providers/aur.rb:94 FC018: LWRP uses deprecated notification syntax: ./pacman/providers/aur.rb:104 FC018: LWRP uses deprecated notification syntax: ./windows/providers/shortcut.rb:54 FC019: Access node attributes in a consistent manner: ant/providers/library.rb:27 FC019: Access node attributes in a consistent manner: ant/providers/library.rb:39 FC019: Access node attributes in a consistent manner: chef-server/libraries/omnitruck_client.rb:76 FC019: Access node attributes in a consistent manner: chef-server/libraries/omnitruck_client.rb:77 FC019: Access node attributes in a consistent manner: chef-server/libraries/omnitruck_client.rb:78 FC019: Access node attributes in a consistent manner: chef/attributes/default.rb:38 FC019: Access node attributes in a consistent manner: chef/attributes/default.rb:39 FC019: Access node attributes in a consistent manner: chef/attributes/default.rb:50 FC019: Access node attributes in a consistent manner: chef/attributes/server_proxy.rb:26 FC019: Access node attributes in a consistent manner: database/libraries/provider_database_postgresql.rb:113 FC019: Access node attributes in a consistent manner: database/recipes/ebs_backup.rb:31 FC019: Access node attributes in a consistent manner: database/recipes/ebs_volume.rb:22 FC019: Access node attributes in a consistent manner: database/recipes/ebs_volume.rb:86 FC019: Access node attributes in a consistent manner: drbd/attributes/default.rb:1 FC019: Access node attributes in a consistent manner: drbd/attributes/default.rb:2 FC019: Access node attributes in a consistent manner: drbd/attributes/default.rb:3 FC019: Access node attributes in a consistent manner: drbd/attributes/default.rb:4 FC019: Access node attributes in a consistent manner: drbd/attributes/default.rb:5 FC019: Access node attributes in a consistent manner: drbd/attributes/default.rb:6 FC019: Access node attributes in a consistent manner: drbd/attributes/default.rb:7 FC019: Access node attributes in a consistent manner: drbd/attributes/default.rb:8 FC019: Access node attributes in a consistent manner: dynect/recipes/a_record.rb:22 FC019: Access node attributes in a consistent manner: dynect/recipes/a_record.rb:25 FC019: Access node attributes in a consistent manner: dynect/recipes/a_record.rb:26 FC019: Access node attributes in a consistent manner: dynect/recipes/a_record.rb:27 FC019: Access node attributes in a consistent manner: dynect/recipes/a_record.rb:28 FC019: Access node attributes in a consistent manner: dynect/recipes/a_record.rb:29 FC019: Access node attributes in a consistent manner: dynect/recipes/ec2.rb:23 FC019: Access node attributes in a consistent manner: dynect/recipes/ec2.rb:25 FC019: Access node attributes in a consistent manner: dynect/recipes/ec2.rb:26 FC019: Access node attributes in a consistent manner: dynect/recipes/ec2.rb:40 FC019: Access node attributes in a consistent manner: gecode/recipes/package.rb:29 FC019: Access node attributes in a consistent manner: gecode/recipes/package.rb:30 FC019: Access node attributes in a consistent manner: gecode/recipes/package.rb:51 FC019: Access node attributes in a consistent manner: gecode/recipes/package.rb:56 FC019: Access node attributes in a consistent manner: munin/attributes/default.rb:27 FC019: Access node attributes in a consistent manner: munin/recipes/client.rb:36 FC019: Access node attributes in a consistent manner: munin/recipes/server.rb:20 FC019: Access node attributes in a consistent manner: munin/recipes/server.rb:24 FC019: Access node attributes in a consistent manner: munin/recipes/server.rb:25 FC019: Access node attributes in a consistent manner: munin/recipes/server.rb:28 FC019: Access node attributes in a consistent manner: munin/recipes/server.rb:29 FC019: Access node attributes in a consistent manner: munin/recipes/server.rb:46 FC019: Access node attributes in a consistent manner: munin/recipes/server.rb:49 FC019: Access node attributes in a consistent manner: munin/recipes/server.rb:51 FC019: Access node attributes in a consistent manner: munin/recipes/server.rb:54 FC019: Access node attributes in a consistent manner: munin/recipes/server.rb:57 FC019: Access node attributes in a consistent manner: munin/recipes/server.rb:64 FC019: Access node attributes in a consistent manner: munin/recipes/server_apache.rb:10 FC019: Access node attributes in a consistent manner: munin/recipes/server_apache.rb:13 FC019: Access node attributes in a consistent manner: munin/recipes/server_apache.rb:15 FC019: Access node attributes in a consistent manner: munin/recipes/server_apache.rb:18 FC019: Access node attributes in a consistent manner: munin/recipes/server_apache.rb:21 FC019: Access node attributes in a consistent manner: munin/recipes/server_apache.rb:25 FC019: Access node attributes in a consistent manner: munin/recipes/server_nginx.rb:14 FC019: Access node attributes in a consistent manner: munin/recipes/server_nginx.rb:16 FC019: Access node attributes in a consistent manner: munin/recipes/server_nginx.rb:19 FC019: Access node attributes in a consistent manner: munin/recipes/server_nginx.rb:21 FC019: Access node attributes in a consistent manner: munin/recipes/server_nginx.rb:24 FC019: Access node attributes in a consistent manner: passenger_apache2/recipes/default.rb:33 FC019: Access node attributes in a consistent manner: passenger_apache2/recipes/default.rb:41 FC019: Access node attributes in a consistent manner: pdns/recipes/recursor.rb:36 FC019: Access node attributes in a consistent manner: perl/definitions/cpan_module.rb:27 FC019: Access node attributes in a consistent manner: perl/recipes/default.rb:26 FC019: Access node attributes in a consistent manner: powershell/recipes/default.rb:69 FC019: Access node attributes in a consistent manner: rabbitmq/attributes/default.rb:44 FC019: Access node attributes in a consistent manner: radiant/libraries/radiant.rb:4 FC019: Access node attributes in a consistent manner: radiant/recipes/db_bootstrap.rb:37 FC019: Access node attributes in a consistent manner: radiant/recipes/db_bootstrap.rb:45 FC019: Access node attributes in a consistent manner: radiant/recipes/default.rb:60 FC019: Access node attributes in a consistent manner: radiant/recipes/default.rb:61 FC019: Access node attributes in a consistent manner: runit/definitions/runit_service.rb:145 FC019: Access node attributes in a consistent manner: runit/definitions/runit_service.rb:154 FC019: Access node attributes in a consistent manner: trac/recipes/default.rb:53 FC019: Access node attributes in a consistent manner: ufw/attributes/default.rb:1 FC019: Access node attributes in a consistent manner: ufw/attributes/default.rb:2 FC019: Access node attributes in a consistent manner: zenoss/attributes/default.rb:33 FC019: Access node attributes in a consistent manner: zenoss/recipes/server.rb:62 FC019: Access node attributes in a consistent manner: zenoss/recipes/server.rb:86 FC019: Access node attributes in a consistent manner: zenoss/recipes/server.rb:95 FC019: Access node attributes in a consistent manner: zenoss/recipes/server.rb:96 FC019: Access node attributes in a consistent manner: zenoss/recipes/server.rb:106 FC019: Access node attributes in a consistent manner: zenoss/recipes/server.rb:163 FC019: Access node attributes in a consistent manner: zenoss/recipes/server.rb:226 FC019: Access node attributes in a consistent manner: zenoss/recipes/server.rb:227 FC023: Prefer conditional attributes: ./apache2/definitions/apache_module.rb:30 FC023: Prefer conditional attributes: ./application_ruby/providers/rails.rb:100 FC023: Prefer conditional attributes: ./apt/providers/repository.rb:26 FC023: Prefer conditional attributes: ./apt/providers/repository.rb:68 FC023: Prefer conditional attributes: ./chef-client/recipes/config.rb:62 FC023: Prefer conditional attributes: ./cloudkick/recipes/default.rb:48 FC023: Prefer conditional attributes: ./database/recipes/ebs_backup.rb:81 FC023: Prefer conditional attributes: ./gecode/recipes/package.rb:29 FC023: Prefer conditional attributes: ./gnu_parallel/recipes/homebrew.rb:22 FC023: Prefer conditional attributes: ./homebrew/providers/tap.rb:14 FC023: Prefer conditional attributes: ./homebrew/providers/tap.rb:22 FC023: Prefer conditional attributes: ./lvm/providers/volume_group.rb:12 FC023: Prefer conditional attributes: ./munin/definitions/munin_plugin.rb:29 FC023: Prefer conditional attributes: ./nagios/recipes/nginx.rb:17 FC023: Prefer conditional attributes: ./nagios/recipes/server_source.rb:125 FC023: Prefer conditional attributes: ./passenger_apache2/recipes/mod_rails.rb:27 FC023: Prefer conditional attributes: ./rabbitmq/providers/plugin.rb:29 FC023: Prefer conditional attributes: ./rabbitmq/providers/plugin.rb:38 FC023: Prefer conditional attributes: ./runit/definitions/runit_service.rb:107 FC023: Prefer conditional attributes: ./runit/definitions/runit_service.rb:158 FC023: Prefer conditional attributes: ./runit/recipes/default.rb:37 FC023: Prefer conditional attributes: ./samba/recipes/server.rb:24 FC023: Prefer conditional attributes: ./users/providers/manage.rb:70 FC023: Prefer conditional attributes: ./users/providers/manage.rb:101 FC023: Prefer conditional attributes: ./wordpress/recipes/default.rb:53 FC023: Prefer conditional attributes: ./wordpress/recipes/default.rb:112 FC023: Prefer conditional attributes: ./yum/providers/key.rb:59 FC024: Consider adding platform equivalents: ./munin/attributes/default.rb:34 FC024: Consider adding platform equivalents: ./mysql/recipes/server.rb:130 FC024: Consider adding platform equivalents: ./mysql/recipes/server.rb:132 FC024: Consider adding platform equivalents: ./pdns/attributes/default.rb:24 FC024: Consider adding platform equivalents: ./transmission/recipes/default.rb:42 FC025: Prefer chef_gem to compile-time gem install: ./transmission/recipes/default.rb:25 FC025: Prefer chef_gem to compile-time gem install: ./transmission/recipes/default.rb:31 FC029: No leading cookbook name in recipe metadata: ./apparmor/metadata.rb:8 FC033: Missing template: ./pdns/recipes/server.rb:43 FC034: Unused template variables: ./activemq/templates/default/wrapper.conf.erb:1 FC034: Unused template variables: ./application_java/templates/default/context.xml.erb:1 FC034: Unused template variables: ./application_python/templates/default/celeryconfig.py.erb:1 FC034: Unused template variables: ./horizon/templates/default/local_settings.py.erb:1 FC034: Unused template variables: ./nginx/templates/default/nginx.init.erb:1 FC034: Unused template variables: ./nova/templates/default/libvirtd.conf.erb:1 FC034: Unused template variables: ./sbuild/templates/default/mk_chroot.sh.erb:1 FC041: Execute resource used to run curl or wget commands: ./hadoop/recipes/default.rb:33 FC042: Prefer include_recipe to require_recipe: ./postfix/recipes/aliases.rb:17 FC043: Prefer new notification syntax: ./apache2/definitions/apache_module.rb:20 FC043: Prefer new notification syntax: ./apache2/definitions/apache_module.rb:38 FC043: Prefer new notification syntax: ./apache2/definitions/apache_module.rb:47 FC043: Prefer new notification syntax: ./apache2/definitions/apache_site.rb:20 FC043: Prefer new notification syntax: ./apache2/definitions/apache_site.rb:24 FC043: Prefer new notification syntax: ./apache2/definitions/apache_site.rb:34 FC043: Prefer new notification syntax: ./apache2/definitions/web_app.rb:20 FC043: Prefer new notification syntax: ./apache2/definitions/web_app.rb:29 FC043: Prefer new notification syntax: ./apache2/recipes/mod_fcgid.rb:24 FC043: Prefer new notification syntax: ./application_java/providers/tomcat.rb:46 FC043: Prefer new notification syntax: ./application_nginx/providers/nginx_load_balancer.rb:39 FC043: Prefer new notification syntax: ./apt/providers/repository.rb:112 FC043: Prefer new notification syntax: ./apt/recipes/default.rb:48 FC043: Prefer new notification syntax: ./cloudkick/recipes/default.rb:77 FC043: Prefer new notification syntax: ./database/recipes/ebs_volume.rb:104 FC043: Prefer new notification syntax: ./drbd/recipes/pair.rb:45 FC043: Prefer new notification syntax: ./drbd/recipes/pair.rb:58 FC043: Prefer new notification syntax: ./drbd/recipes/pair.rb:65 FC043: Prefer new notification syntax: ./drbd/recipes/pair.rb:85 FC043: Prefer new notification syntax: ./dynect/recipes/ec2.rb:69 FC043: Prefer new notification syntax: ./gems/recipes/server.rb:50 FC043: Prefer new notification syntax: ./glance/recipes/api.rb:51 FC043: Prefer new notification syntax: ./glance/recipes/api.rb:102 FC043: Prefer new notification syntax: ./glance/recipes/api.rb:128 FC043: Prefer new notification syntax: ./glance/recipes/api.rb:145 FC043: Prefer new notification syntax: ./glance/recipes/api.rb:160 FC043: Prefer new notification syntax: ./glance/recipes/registry.rb:76 FC043: Prefer new notification syntax: ./glance/recipes/registry.rb:84 FC043: Prefer new notification syntax: ./glance/recipes/registry.rb:143 FC043: Prefer new notification syntax: ./glance/recipes/registry.rb:161 FC043: Prefer new notification syntax: ./god/definitions/god_monitor.rb:20 FC043: Prefer new notification syntax: ./god/definitions/god_monitor.rb:23 FC043: Prefer new notification syntax: ./horizon/recipes/server.rb:159 FC043: Prefer new notification syntax: ./horizon/recipes/server.rb:165 FC043: Prefer new notification syntax: ./iptables/definitions/iptables_rule.rb:20 FC043: Prefer new notification syntax: ./iptables/definitions/iptables_rule.rb:23 FC043: Prefer new notification syntax: ./jetty/recipes/cargo.rb:41 FC043: Prefer new notification syntax: ./jetty/recipes/cargo.rb:56 FC043: Prefer new notification syntax: ./jetty/recipes/cargo.rb:65 FC043: Prefer new notification syntax: ./jetty/recipes/cargo.rb:80 FC043: Prefer new notification syntax: ./jetty/recipes/default.rb:53 FC043: Prefer new notification syntax: ./jetty/recipes/default.rb:61 FC043: Prefer new notification syntax: ./jpackage/recipes/default.rb:33 FC043: Prefer new notification syntax: ./keystone/recipes/server.rb:63 FC043: Prefer new notification syntax: ./keystone/recipes/server.rb:89 FC043: Prefer new notification syntax: ./keystone/recipes/server.rb:112 FC043: Prefer new notification syntax: ./maradns/recipes/default.rb:37 FC043: Prefer new notification syntax: ./maradns/recipes/default.rb:46 FC043: Prefer new notification syntax: ./memcached/recipes/default.rb:41 FC043: Prefer new notification syntax: ./memcached/recipes/default.rb:56 FC043: Prefer new notification syntax: ./memcached/recipes/default.rb:74 FC043: Prefer new notification syntax: ./munin/definitions/munin_plugin.rb:21 FC043: Prefer new notification syntax: ./munin/definitions/munin_plugin.rb:39 FC043: Prefer new notification syntax: ./munin/recipes/client.rb:29 FC043: Prefer new notification syntax: ./munin/recipes/server_apache.rb:21 FC043: Prefer new notification syntax: ./nagios/providers/nrpecheck.rb:31 FC043: Prefer new notification syntax: ./nagios/providers/nrpecheck.rb:44 FC043: Prefer new notification syntax: ./nginx/recipes/http_geoip_module.rb:41 FC043: Prefer new notification syntax: ./nova/recipes/api-ec2.rb:46 FC043: Prefer new notification syntax: ./nova/recipes/api-ec2.rb:113 FC043: Prefer new notification syntax: ./nova/recipes/api-metadata.rb:42 FC043: Prefer new notification syntax: ./nova/recipes/api-metadata.rb:53 FC043: Prefer new notification syntax: ./nova/recipes/api-os-compute.rb:47 FC043: Prefer new notification syntax: ./nova/recipes/api-os-compute.rb:112 FC043: Prefer new notification syntax: ./nova/recipes/api-os-volume.rb:42 FC043: Prefer new notification syntax: ./nova/recipes/api-os-volume.rb:53 FC043: Prefer new notification syntax: ./nova/recipes/compute.rb:48 FC043: Prefer new notification syntax: ./nova/recipes/libvirt.rb:70 FC043: Prefer new notification syntax: ./nova/recipes/libvirt.rb:81 FC043: Prefer new notification syntax: ./nova/recipes/libvirt.rb:90 FC043: Prefer new notification syntax: ./nova/recipes/network.rb:31 FC043: Prefer new notification syntax: ./nova/recipes/nova-cert.rb:30 FC043: Prefer new notification syntax: ./nova/recipes/nova-scheduler-patch.rb:24 FC043: Prefer new notification syntax: ./nova/recipes/scheduler.rb:38 FC043: Prefer new notification syntax: ./nova/recipes/vncproxy.rb:38 FC043: Prefer new notification syntax: ./nova/recipes/vncproxy.rb:45 FC043: Prefer new notification syntax: ./nova/recipes/volume.rb:36 FC043: Prefer new notification syntax: ./ntp/recipes/default.rb:44 FC043: Prefer new notification syntax: ./openldap/recipes/auth.rb:46 FC043: Prefer new notification syntax: ./openldap/recipes/auth.rb:56 FC043: Prefer new notification syntax: ./openldap/recipes/server.rb:71 FC043: Prefer new notification syntax: ./openldap/recipes/server.rb:78 FC043: Prefer new notification syntax: ./openldap/recipes/server.rb:97 FC043: Prefer new notification syntax: ./rabbitmq/recipes/mgmt_console.rb:25 FC043: Prefer new notification syntax: ./runit/definitions/runit_service.rb:20 FC043: Prefer new notification syntax: ./runit/definitions/runit_service.rb:172 FC043: Prefer new notification syntax: ./runit/recipes/default.rb:44 FC043: Prefer new notification syntax: ./runit/recipes/default.rb:65 FC043: Prefer new notification syntax: ./samba/recipes/server.rb:55 FC043: Prefer new notification syntax: ./subversion/recipes/server.rb:30 FC043: Prefer new notification syntax: ./supervisor/providers/fcgi.rb:27 FC043: Prefer new notification syntax: ./supervisor/providers/fcgi.rb:44 FC043: Prefer new notification syntax: ./supervisor/providers/group.rb:27 FC043: Prefer new notification syntax: ./supervisor/providers/group.rb:44 FC043: Prefer new notification syntax: ./supervisor/providers/service.rb:27 FC043: Prefer new notification syntax: ./supervisor/providers/service.rb:44 FC043: Prefer new notification syntax: ./tomcat/recipes/default.rb:50 FC043: Prefer new notification syntax: ./tomcat/recipes/default.rb:58 FC043: Prefer new notification syntax: ./tomcat/recipes/default.rb:67 FC043: Prefer new notification syntax: ./tomcat/recipes/users.rb:22 FC043: Prefer new notification syntax: ./yum/providers/key.rb:60 FC043: Prefer new notification syntax: ./yum/providers/repository.rb:94 FC043: Prefer new notification syntax: ./zenoss/recipes/server.rb:155 FC043: Prefer new notification syntax: ./zenoss/recipes/server.rb:164 FC044: Avoid bare attribute keys: ./resolver/attributes/default.rb:20 FC045: Consider setting cookbook name in metadata: ./maven/metadata.rb:1 FC047: Attribute assignment does not specify precedence: ./jetty/recipes/cargo.rb:35 FC047: Attribute assignment does not specify precedence: ./munin/recipes/server_apache.rb:1 FC047: Attribute assignment does not specify precedence: ./python/recipes/package.rb:28 FC047: Attribute assignment does not specify precedence: ./users/providers/manage.rb:55 FC048: Prefer Mixlib::ShellOut: ./apt/providers/repository.rb:26 FC048: Prefer Mixlib::ShellOut: ./chef-client/recipes/cron.rb:38 FC048: Prefer Mixlib::ShellOut: ./chef-client/recipes/delete_validation.rb:20 FC048: Prefer Mixlib::ShellOut: ./chef-client/recipes/service.rb:52 FC048: Prefer Mixlib::ShellOut: ./chef-client/recipes/task.rb:42 FC048: Prefer Mixlib::ShellOut: ./dmg/providers/package.rb:44 FC048: Prefer Mixlib::ShellOut: ./dmg/providers/package.rb:47 FC048: Prefer Mixlib::ShellOut: ./dmg/providers/package.rb:76 FC048: Prefer Mixlib::ShellOut: ./nginx/recipes/passenger.rb:20 FC048: Prefer Mixlib::ShellOut: ./windows/providers/task.rb:106 foodcritic-3.0.3/spec/regression/regression_spec.rb0000644000004100000410000000057412263752452022541 0ustar www-datawww-datarequire_relative '../regression_helpers' describe 'regression test' do let(:expected_lint_output) do File.read('spec/regression/expected-output.txt') end let(:actual_lint_output) do lint_regression_cookbooks end it "should result in the expected matches against a pinned set of cookbooks" do actual_lint_output.must_equal expected_lint_output end end foodcritic-3.0.3/spec/regression_helpers.rb0000644000004100000410000000174512263752452021072 0ustar www-datawww-datarequire_relative 'spec_helper' require 'fileutils' require 'pathname' def lint_regression_cookbooks working_dir = Pathname.new('tmp/regression') FileUtils.mkdir_p(working_dir) pinned_cookbooks('spec/regression/cookbooks.txt').each do |cbk| clone_cookbook(working_dir, cbk) end lint_cookbooks(working_dir) end def pinned_cookbooks(path) File.read(path).lines.map do |line| name, ref = line.strip.split(':') {:name => name, :ref => ref} end end def clone_cookbook(clone_path, cbk) target_path = clone_path + cbk[:name] unless Dir.exists?(target_path) %x{git clone -q https://github.com/opscode-cookbooks/#{cbk[:name]}.git #{target_path}} raise 'Unable to clone cookbook' unless $?.success? end %x{cd #{target_path} && git checkout -q #{cbk[:ref]}} raise 'Unable to checkout revision' unless $?.success? end def lint_cookbooks(cookbook_path) result = %x{cd #{cookbook_path} && foodcritic .} raise 'Unable to lint' unless $?.success? result end foodcritic-3.0.3/lib/0000755000004100000410000000000012263752452014450 5ustar www-datawww-datafoodcritic-3.0.3/lib/foodcritic/0000755000004100000410000000000012263752452016575 5ustar www-datawww-datafoodcritic-3.0.3/lib/foodcritic/domain.rb0000644000004100000410000000463612263752452020402 0ustar www-datawww-datarequire 'gherkin/tag_expression' module FoodCritic # A warning of a possible issue class Warning attr_reader :rule, :match, :is_failed # Create a new warning. # # Warning.new(rule, :filename => 'foo/recipes.default.rb', # :line => 5, :column=> 40) # def initialize(rule, match={}, options={}) @rule, @match = rule, match @is_failed = options[:fail_tags].empty? ? false : rule.matches_tags?(options[:fail_tags]) end # If this warning has failed or not. def failed? @is_failed end end # The collected warnings (if any) raised against a cookbook tree. class Review attr_reader :cookbook_paths, :warnings def initialize(cookbook_paths, warnings) @cookbook_paths = Array(cookbook_paths) @warnings = warnings end # If any of the warnings in this review have failed or not. def failed? warnings.any? { |w| w.failed? } end # Returns an array of warnings that are marked as failed. def failures warnings.select { |w| w.failed? } end # Returns a string representation of this review. This representation is # liable to change. def to_s # Sorted by filename and line number. # # FC123: My rule name: foo/recipes/default.rb @warnings.map do |w| ["#{w.rule.code}: #{w.rule.name}: #{w.match[:filename]}", w.match[:line].to_i] end.sort do |x,y| x.first == y.first ? x[1] <=> y[1] : x.first <=> y.first end.map{|w|"#{w.first}:#{w[1]}"}.uniq.join("\n") end end # A rule to be matched against. class Rule attr_accessor :code, :name, :applies_to, :cookbook, :attributes, :recipe, :provider, :resource, :metadata, :library, :template, :role, :environment attr_writer :tags def initialize(code, name) @code, @name = code, name @tags = [code] @applies_to = Proc.new {|version| true} end # The tags associated with this rule. Rule is always tagged with the tag # `any` and the rule code. def tags ['any'] + @tags end # Checks the rule's tags to see if they match a Gherkin (Cucumber) expression def matches_tags?(tag_expr) Gherkin::TagExpression.new(tag_expr).evaluate(tags.map do |t| Gherkin::Formatter::Model::Tag.new(t, 1) end) end # Returns a string representation of this rule. def to_s "#{@code}: #{@name}" end end end foodcritic-3.0.3/lib/foodcritic/ast.rb0000644000004100000410000000077612263752452017723 0ustar www-datawww-datamodule FoodCritic module AST private def ast_hash_node?(node) node.first.respond_to?(:first) and node.first.first == :assoc_new end def ast_node_has_children?(node) node.respond_to?(:first) and ! node.respond_to?(:match) end # If the provided node is the line / column information. def position_node?(node) node.respond_to?(:length) and node.length == 2 and node.respond_to?(:all?) and node.all?{|child| child.respond_to?(:to_i)} end end end foodcritic-3.0.3/lib/foodcritic/xml.rb0000644000004100000410000000160212263752452017721 0ustar www-datawww-datamodule FoodCritic module XML private def xml_array_node(doc, xml_node, child) n = xml_create_node(doc, child) xml_node.add_child(build_xml(child, doc, n)) end def xml_create_node(doc, c) Nokogiri::XML::Node.new(c.first.to_s.gsub(/[^a-z_]/, ''), doc) end def xml_document(doc, xml_node) if doc.nil? doc = Nokogiri::XML('') xml_node = doc.root end [doc, xml_node] end def xml_hash_node(doc, xml_node, child) child.each do |c| n = xml_create_node(doc, c) c.drop(1).each do |a| xml_node.add_child(build_xml(a, doc, n)) end end end def xml_position_node(doc, xml_node, child) pos = Nokogiri::XML::Node.new("pos", doc) pos['line'] = child.first.to_s pos['column'] = child[1].to_s xml_node.add_child(pos) end end end foodcritic-3.0.3/lib/foodcritic/rules.rb0000644000004100000410000005731312263752452020265 0ustar www-datawww-data# This file contains all of the rules that ship with foodcritic. # # * Foodcritic rules perform static code analysis - rather than the cookbook code # being loaded by the interpreter it is parsed into a tree (AST) that is then # passed to each rule. # * Rules can use a number of API functions that ship with foodcritic to make # sense of the parse tree. # * Rules can also use XPath to query the AST. A rule can consist of a XPath # query only, as any nodes returned from a `recipe` block will be converted # into warnings. rule "FC002", "Avoid string interpolation where not required" do tags %w{style strings} recipe do |ast| ast.xpath(%q{//*[self::string_literal | self::assoc_new]/string_add[ count(descendant::string_embexpr) = 1 and count(tstring_content|string_add/tstring_content) = 0]}) end end rule "FC003", "Check whether you are running with chef server before using" + " server-specific features" do tags %w{portability solo} recipe do |ast,filename| unless checks_for_chef_solo?(ast) or chef_solo_search_supported?(filename) searches(ast) end end end rule "FC004", "Use a service resource to start and stop services" do tags %w{style services} recipe do |ast| find_resources(ast, :type => 'execute').find_all do |cmd| cmd_str = (resource_attribute(cmd, 'command') || resource_name(cmd)).to_s (cmd_str.include?('/etc/init.d') || ['service ', '/sbin/service ', 'start ', 'stop ', 'invoke-rc.d '].any? do |service_cmd| cmd_str.start_with?(service_cmd) end) && %w{start stop restart reload}.any?{|a| cmd_str.include?(a)} end end end rule "FC005", "Avoid repetition of resource declarations" do tags %w{style} recipe do |ast| resources = find_resources(ast).map do |res| resource_attributes(res).merge({:type => resource_type(res), :ast => res}) end.chunk do |res| res[:type] + res[:ast].xpath("ancestor::*[self::if | self::unless | self::elsif | self::else | self::when | self::method_add_block/call][position() = 1]/ descendant::pos[position() = 1]").to_s + res[:ast].xpath("ancestor::method_add_block/command[ ident/@value='action']/args_add_block/descendant::ident/@value").to_s end.reject{|res| res[1].size < 3} resources.map do |cont_res| first_resource = cont_res[1][0][:ast] # we have contiguous resources of the same type, but do they share the # same attributes? sorted_atts = cont_res[1].map do |atts| atts.delete_if{|k| k == :ast}.to_a.sort do |x,y| x.first.to_s <=> y.first.to_s end end first_resource if sorted_atts.all? do |att| (att - sorted_atts.inject{|atts,a| atts & a}).length == 1 end end.compact end end rule "FC006", "Mode should be quoted or fully specified when setting file permissions" do tags %w{correctness files} recipe do |ast| ast.xpath(%q{//ident[@value='mode']/parent::command/ descendant::int[string-length(@value) < 5 and not(starts-with(@value, "0") and string-length(@value) = 4)]/ancestor::method_add_block}) end end rule "FC007", "Ensure recipe dependencies are reflected in cookbook metadata" do tags %w{correctness metadata} recipe do |ast,filename| metadata_path =Pathname.new( File.join(File.dirname(filename), '..', 'metadata.rb')).cleanpath next unless File.exists? metadata_path actual_included = included_recipes(ast, :with_partial_names => false) undeclared = actual_included.keys.map do |recipe| recipe.split('::').first end - [cookbook_name(filename)] - declared_dependencies(read_ast(metadata_path)) actual_included.map do |recipe, include_stmts| if undeclared.include?(recipe) || undeclared.any?{|u| recipe.start_with?("#{u}::")} include_stmts end end.flatten.compact end end rule "FC008", "Generated cookbook metadata needs updating" do tags %w{style metadata} metadata do |ast,filename| {'maintainer' => 'YOUR_COMPANY_NAME', 'maintainer_email' => 'YOUR_EMAIL'}.map do |field,value| ast.xpath(%Q{//command[ident/@value='#{field}']/ descendant::tstring_content[@value='#{value}']}) end end end rule "FC009", "Resource attribute not recognised" do tags %w{correctness} recipe do |ast| matches = [] resource_attributes_by_type(ast).each do |type,resources| resources.each do |resource| resource.keys.map(&:to_sym).reject do |att| resource_attribute?(type.to_sym, att) end.each do |invalid_att| matches << find_resources(ast, :type => type).find do |res| resource_attributes(res).include?(invalid_att.to_s) end end end end matches end end rule "FC010", "Invalid search syntax" do tags %w{correctness search} recipe do |ast| # This only works for literal search strings literal_searches(ast).reject{|search| valid_query?(search['value'])} end end rule "FC011", "Missing README in markdown format" do tags %w{style readme} cookbook do |filename| unless File.exists?(File.join(filename, 'README.md')) [file_match(File.join(filename, 'README.md'))] end end end rule "FC012", "Use Markdown for README rather than RDoc" do tags %w{style readme} cookbook do |filename| if File.exists?(File.join(filename, 'README.rdoc')) [file_match(File.join(filename, 'README.rdoc'))] end end end rule "FC013", "Use file_cache_path rather than hard-coding tmp paths" do tags %w{style files} recipe do |ast| find_resources(ast, :type => 'remote_file').find_all do |download| path = (resource_attribute(download, 'path') || resource_name(download)).to_s path.start_with?('/tmp/') end end end rule "FC014", "Consider extracting long ruby_block to library" do tags %w{style libraries} recipe do |ast| find_resources(ast, :type => 'ruby_block').find_all do |rb| lines = rb.xpath("descendant::fcall[ident/@value='block']/../../ descendant::*[@line]/@line").map{|n| n.value.to_i}.sort (! lines.empty?) && (lines.last - lines.first) > 15 end end end rule "FC015", "Consider converting definition to a LWRP" do tags %w{style definitions lwrp} applies_to {|version| version >= gem_version("0.7.12")} cookbook do |dir| Dir[File.join(dir, 'definitions', '*.rb')].reject do |entry| ['.', '..'].include? entry end.map{|entry| file_match(entry)} end end rule "FC016", "LWRP does not declare a default action" do tags %w{correctness lwrp} applies_to {|version| version >= gem_version("0.7.12")} resource do |ast, filename| unless ["//ident/@value='default_action'", "//def/bodystmt/descendant::assign/ var_field/ivar/@value='@action'"].any? {|expr| ast.xpath(expr)} [file_match(filename)] end end end rule "FC017", "LWRP does not notify when updated" do tags %w{correctness lwrp} applies_to do |version| version >= gem_version("0.7.12") end provider do |ast, filename| use_inline_resources = ! ast.xpath('//*[self::vcall or self::var_ref]/ident [@value="use_inline_resources"]').empty? unless use_inline_resources actions = ast.xpath('//method_add_block/command[ident/@value="action"]/ args_add_block/descendant::symbol/ident') actions.reject do |action| blk = action.xpath('ancestor::command[1]/ following-sibling::*[self::do_block or self::brace_block]') empty = ! blk.xpath('stmts_add/void_stmt').empty? converge_by = ! blk.xpath('descendant::*[self::command or self::fcall] /ident[@value="converge_by"]').empty? updated_by_last_action = ! blk.xpath('descendant::*[self::call or self::command_call]/*[self::vcall or self::var_ref/ident/ @value="new_resource"]/../ident[@value="updated_by_last_action"] ').empty? empty || converge_by || updated_by_last_action end end end end rule "FC018", "LWRP uses deprecated notification syntax" do tags %w{style lwrp deprecated} applies_to {|version| version >= gem_version("0.9.10")} provider do |ast| ast.xpath("//assign/var_field/ivar[@value='@updated']").map do |class_var| match(class_var) end + ast.xpath(%q{//assign/field/*[self::vcall or self::var_ref/ident/ @value='new_resource']/../ident[@value='updated']}) end end rule "FC019", "Access node attributes in a consistent manner" do tags %w{style attributes} cookbook do |cookbook_dir| asts = {}; files = Dir["#{cookbook_dir}/*/*.rb"].reject do |file| relative_path = Pathname.new(file).relative_path_from(Pathname.new(cookbook_dir)) relative_path.to_s.split(File::SEPARATOR).include?('spec') end.map do |file| {:path => file, :ast => read_ast(file)} end types = [:string, :symbol, :vivified].map do |type| {:access_type => type, :count => files.map do |file| attribute_access(file[:ast], :type => type, :ignore_calls => true, :cookbook_dir => cookbook_dir, :ignore => 'run_state').tap do |ast| unless ast.empty? (asts[type] ||= []) << {:ast => ast, :path => file[:path]} end end.size end.inject(:+)} end.reject{|type| type[:count] == 0} if asts.size > 1 least_used = asts[types.min{|a,b| a[:count] <=> b[:count]}[:access_type]] least_used.map do |file| file[:ast].map{|ast| match(ast).merge(:filename => file[:path])}.flatten end end end end rule "FC021", "Resource condition in provider may not behave as expected" do tags %w{correctness lwrp} applies_to {|version| version >= gem_version("0.10.6")} provider do |ast| find_resources(ast).map do |resource| condition = resource.xpath(%q{//method_add_block/ descendant::ident[@value='not_if' or @value='only_if']/ ancestor::*[self::method_add_block or self::command][1][descendant:: ident/@value='new_resource']/ancestor::stmts_add[2]/method_add_block/ command[count(descendant::string_embexpr) = 0]}) condition end.compact end end rule "FC022", "Resource condition within loop may not behave as expected" do tags %w{correctness} applies_to {|version| version >= gem_version("0.10.6")} recipe do |ast| ast.xpath("//call[ident/@value='each']/../do_block").map do |loop| block_vars = loop.xpath("block_var/params/child::*").map do |n| n.name.sub(/^ident/, '') end + loop.xpath("block_var/params/child::*/descendant::ident").map do |v| v['value'] end find_resources(loop).map do |resource| # if any of the parameters to the block are used in a condition then we # have a match unless (block_vars & (resource.xpath(%q{descendant::ident[@value='not_if' or @value='only_if']/ancestor::*[self::method_add_block or self::command][1]/descendant::ident/@value}).map{|a| a.value})).empty? c = resource.xpath('command[count(descendant::string_embexpr) = 0]') resource unless c.empty? || block_vars.any? do |var| ! resource.xpath(%Q{command/args_add_block/args_add/ var_ref/ident[@value='#{var}']}).empty? end end end end.flatten.compact end end rule "FC023", "Prefer conditional attributes" do tags %w{style} recipe do |ast| ast.xpath(%q{//method_add_block[command/ident][count(descendant::ident [@value='only_if' or @value='not_if']) = 0]/ancestor::*[self::if or self::unless][count(descendant::method_add_block[command/ident]) = 1] [count(stmts_add/method_add_block/call) = 0] [count(stmts_add/stmts_add) = 0] [count(descendant::*[self::else or self::elsif]) = 0]}) end end rule "FC024", "Consider adding platform equivalents" do tags %w{portability} RHEL = %w{amazon centos redhat scientific} recipe do |ast, filename| next if Pathname.new(filename).basename.to_s == 'metadata.rb' metadata_path = Pathname.new( File.join(File.dirname(filename), '..', 'metadata.rb')).cleanpath md_platforms = if File.exists?(metadata_path) supported_platforms(read_ast(metadata_path)).map{|p| p[:platform]} else [] end md_platforms = RHEL if md_platforms.empty? ['//method_add_arg[fcall/ident/@value="platform?"]/arg_paren/args_add_block', "//when"].map do |expr| ast.xpath(expr).map do |whn| platforms = whn.xpath("args_add/descendant::tstring_content").map do |p| p['value'] end.sort unless platforms.size == 1 || (md_platforms & platforms).empty? whn unless (platforms & RHEL).empty? || ((md_platforms & RHEL) - (platforms & RHEL)).empty? end end.compact end.flatten end end rule "FC025", "Prefer chef_gem to compile-time gem install" do tags %w{style deprecated} applies_to {|version| version >= gem_version("0.10.10")} recipe do |ast| gem_install = ast.xpath("//stmts_add/assign[method_add_block[command/ident/ @value='gem_package'][do_block/stmts_add/command[ident/@value='action'] [descendant::ident/@value='nothing']]]") gem_install.map do |install| gem_var = install.xpath("var_field/ident/@value") unless ast.xpath("//method_add_arg[call/var_ref/ident/@value='#{gem_var}'] [arg_paren/descendant::ident/@value='install' or arg_paren/descendant::ident/@value='upgrade']").empty? gem_install end end end end rule "FC026", "Conditional execution block attribute contains only string" do tags %w{correctness} applies_to {|version| version >= gem_version("0.7.4")} recipe do |ast| find_resources(ast).map{|r| resource_attributes(r)}.map do |resource| [resource['not_if'], resource['only_if']] end.flatten.compact.select do |condition| condition.respond_to?(:xpath) and ! condition.xpath('descendant::string_literal').empty? and ! condition.xpath('stmts_add/string_literal').empty? and condition.xpath('descendant::stmts_add[count(ancestor:: string_literal) = 0]').size == 1 end end end rule "FC027", "Resource sets internal attribute" do tags %w{correctness} recipe do |ast| find_resources(ast, :type => :service).map do |service| service unless (resource_attributes(service).keys & ['enabled', 'running']).empty? end.compact end end rule "FC028", "Incorrect #platform? usage" do tags %w{correctness} recipe do |ast| ast.xpath(%q{//*[self::call | self::command_call] [(var_ref|vcall)/ident/@value='node'] [ident/@value="platform?"]}) end end rule "FC029", "No leading cookbook name in recipe metadata" do tags %w{correctness metadata} metadata do |ast,filename| ast.xpath('//command[ident/@value="recipe"]').map do |declared_recipe| next unless declared_recipe.xpath('count(//vcall|//var_ref)').to_i == 0 recipe_name = declared_recipe.xpath('args_add_block/ descendant::tstring_content[1]/@value').to_s unless recipe_name.empty? || recipe_name.split('::').first == cookbook_name(filename.to_s) declared_recipe end end.compact end end rule "FC030", "Cookbook contains debugger breakpoints" do tags %w{annoyances} def pry_bindings(ast) ast.xpath('//call[(vcall|var_ref)/ident/@value="binding"] [ident/@value="pry"]') end recipe{|ast| pry_bindings(ast)} library{|ast| pry_bindings(ast)} metadata{|ast| pry_bindings(ast)} template{|ast| pry_bindings(ast)} end rule "FC031", "Cookbook without metadata file" do tags %w{correctness metadata} cookbook do |filename| if ! File.exists?(File.join(filename, 'metadata.rb')) [file_match(File.join(filename, 'metadata.rb'))] end end end rule "FC032", "Invalid notification timing" do tags %w{correctness notifications} recipe do |ast| find_resources(ast).select do |resource| notifications(resource).any? do |notification| ! [:delayed, :immediate].include? notification[:timing] end end end end rule "FC033", "Missing template" do tags %w{correctness} recipe do |ast,filename| find_resources(ast, :type => :template).reject do |resource| resource_attributes(resource)['local'] || resource_attributes(resource)['cookbook'] end.map do |resource| file = template_file(resource_attributes(resource, :return_expressions => true)) {:resource => resource, :file => file} end.reject do |resource| resource[:file].respond_to?(:xpath) end.select do |resource| template_paths(filename).none? do |path| relative_path = [] Pathname.new(path).ascend do |template_path| relative_path << template_path.basename break if template_path.dirname.dirname.basename.to_s == 'templates' end File.join(relative_path.reverse) == resource[:file] end end.map{|resource| resource[:resource]} end end rule "FC034", "Unused template variables" do tags %w{correctness} recipe do |ast,filename| Array(resource_attributes_by_type(ast)['template']).select do |t| t['variables'] and t['variables'].respond_to?(:xpath) end.map do |resource| all_templates = template_paths(filename) template_path = all_templates.find do |path| File.basename(path) == template_file(resource) end next unless template_path passed_vars = resource['variables'].xpath( 'symbol/ident/@value').map{|tv| tv.to_s} begin template_vars = templates_included( all_templates, template_path).map do |template| read_ast(template).xpath('//var_ref/ivar/@value').map do |v| v.to_s.sub(/^@/, '') end end.flatten file_match(template_path) unless (passed_vars - template_vars).empty? rescue RecursedTooFarError [] end end.compact end end rule "FC037", "Invalid notification action" do tags %w{correctness} recipe do |ast| find_resources(ast).select do |resource| notifications(resource).any? do |n| type = case n[:type] when :notifies then n[:resource_type] when :subscribes then resource_type(resource).to_sym end n[:action].size > 0 and ! resource_action?(type, n[:action]) end end end end rule "FC038", "Invalid resource action" do tags %w{correctness} recipe do |ast| find_resources(ast).select do |resource| actions = resource_attributes(resource)['action'] if actions.respond_to?(:xpath) actions = actions.xpath('descendant::array/descendant::symbol/ident/@value') else actions = Array(actions) end actions.reject{|a| a.to_s.empty?}.any? do |action| ! resource_action?(resource_type(resource), action) end end end end rule "FC039", "Node method cannot be accessed with key" do tags %w{correctness} recipe do |ast| [{:type => :string, :path => '@value'}, {:type => :symbol, :path => 'ident/@value'}].map do |access_type| attribute_access(ast, :type => access_type[:type]).select do |att| att_name = att.xpath(access_type[:path]).to_s.to_sym att_name != :tags && chef_node_methods.include?(att_name) end.select do |att| ! att.xpath('ancestor::args_add_block[position() = 1] [preceding-sibling::vcall | preceding-sibling::var_ref]').empty? end.select do |att| att_type = att.xpath('ancestor::args_add_block[position() = 1] /../var_ref/ident/@value').to_s ast.xpath("//assign/var_field/ident[@value='#{att_type}']").empty? end end.flatten end end rule "FC040", "Execute resource used to run git commands" do tags %w{style recipe etsy} recipe do |ast| possible_git_commands = %w{ clone fetch pull checkout reset } find_resources(ast, :type => 'execute').select do |cmd| cmd_str = (resource_attribute(cmd, 'command') || resource_name(cmd)).to_s git_cmd = cmd_str.match(/git ([a-z]+)/) break false if git_cmd.nil? !git_cmd.captures.nil? && possible_git_commands.include?(git_cmd.captures[0]) end end end rule "FC041", "Execute resource used to run curl or wget commands" do tags %w{style recipe etsy} recipe do |ast| find_resources(ast, :type => 'execute').select do |cmd| cmd_str = (resource_attribute(cmd, 'command') || resource_name(cmd)).to_s (cmd_str.include?('curl ') || cmd_str.include?('wget ')) end end end rule "FC042", "Prefer include_recipe to require_recipe" do tags %w{deprecated} recipe do |ast| ast.xpath('//command[ident/@value="require_recipe"]') end end rule "FC043", "Prefer new notification syntax" do tags %w{style notifications deprecated} applies_to {|version| version >= gem_version("0.9.10")} recipe do |ast| find_resources(ast).select do |resource| notifications(resource).any?{|notify| notify[:style] == :old} end end end rule "FC044", "Avoid bare attribute keys" do tags %w{style} attributes do |ast| declared = ast.xpath('//descendant::var_field/ident/@value').map{|v| v.to_s} ast.xpath('//assign/*[self::vcall or self::var_ref] [count(child::kw) = 0]/ident').select do |v| (v['value'] != 'secure_password') && ! declared.include?(v['value']) && ! v.xpath("ancestor::*[self::brace_block or self::do_block]/block_var/ descendant::ident/@value='#{v['value']}'") end end end rule "FC045", "Consider setting cookbook name in metadata" do tags %w{annoyances metadata} metadata do |ast, filename| unless ast.xpath('descendant::stmts_add/command/ident/@value="name"') [file_match(filename)] end end cookbook do |filename| if ! File.exists?(File.join(filename, 'metadata.rb')) [file_match(File.join(filename, 'metadata.rb'))] end end end rule "FC046", "Attribute assignment uses assign unless nil" do attributes do |ast| attribute_access(ast).map{|a| a.xpath('ancestor::opassign/op[@value="||="]')} end end rule "FC047", "Attribute assignment does not specify precedence" do tags %w{attributes correctness} recipe do |ast| attribute_access(ast).map do |att| exclude_att_types = '[count(following-sibling::ident[ is_att_type(@value) or @value = "run_state"]) = 0]' att.xpath(%Q{ancestor::assign[*[self::field | self::aref_field] [descendant::*[self::vcall | self::var_ref][ident/@value="node"] #{exclude_att_types}]]}, AttFilter.new) + att.xpath(%Q{ancestor::binary[@value="<<"]/*[position() = 1][self::aref] [descendant::*[self::vcall | self::var_ref]#{exclude_att_types} /ident/@value="node"]}, AttFilter.new) end end end rule "FC048", "Prefer Mixlib::ShellOut" do tags %w{style processes} recipe do |ast| ast.xpath('//xstring_literal | //*[self::command or self::fcall]/ ident[@value="system"][count(following-sibling::args_add_block/ descendant::kw[@value="true" or @value="false"]) = 0]') end end rule "FC049", "Role name does not match containing file name" do tags %w{style roles} role do |ast, filename| role_name_specified = field_value(ast, :name) role_name_file = Pathname.new(filename).basename.sub_ext('').to_s if role_name_specified and role_name_specified != role_name_file field(ast, :name) end end end rule "FC050", "Name includes invalid characters" do tags %w{correctness environments roles} def invalid_name(ast) field(ast, :name) unless field_value(ast, :name) =~ /^[a-zA-Z0-9_\-]+$/ end environment{|ast| invalid_name(ast)} role{|ast| invalid_name(ast)} end rule "FC051", "Template partials loop indefinitely" do tags %w{correctness} recipe do |_,filename| cbk_templates = template_paths(filename) cbk_templates.select do |template| begin templates_included(cbk_templates, template) false rescue RecursedTooFarError true end end.map{|t| file_match(t)} end end foodcritic-3.0.3/lib/foodcritic/output.rb0000644000004100000410000000744312263752452020472 0ustar www-datawww-datarequire 'set' module FoodCritic # Default output showing a summary view. class SummaryOutput # Output a summary view only listing the matching rules, file and line # number. # # @param [Review] review The review to output. def output(review) puts review.to_s end end # Display rule matches with surrounding context. class ContextOutput # Output the review showing matching lines with context. # # @param [Review] review The review to output. def output(review) unless review.respond_to?(:warnings) puts review; return end context = 3 print_fn = lambda { |fn| ansi_print(fn, :red, nil, :bold) } print_rule = lambda { |warn| ansi_print(warn, :cyan, nil, :bold) } print_line = lambda { |line| ansi_print(line, nil, :red, :bold) } key_by_file_and_line(review).each do |fn, warnings| print_fn.call fn unless File.exists?(fn) print_rule.call warnings[1].to_a.join("\n") next end # Set of line numbers with warnings warn_lines = warnings.keys.to_set # Moving set of line numbers within the context of our position context_set = (0..context).to_set # The last line number we printed a warning for last_warn = -1 File.open(fn) do |file| file.each do |line| context_set.add(file.lineno + context) context_set.delete(file.lineno - context - 1) # Find the first warning within our context context_warns = context_set & warn_lines next_warn = context_warns.min # We may need to interrupt the trailing context of a previous warning next_warn = file.lineno if warn_lines.include? file.lineno # Display a warning if next_warn && next_warn > last_warn print_rule.call warnings[next_warn].to_a.join("\n") last_warn = next_warn end # Display any relevant lines if warn_lines.include? file.lineno print '%4i|' % file.lineno print_line.call line.chomp elsif not context_warns.empty? print '%4i|' % file.lineno puts line.chomp end end end end end private # Build a hash lookup by filename and line number for warnings found in the # specified review. # # @param [Review] review The review to convert. # @return [Hash] Nested hashes keyed by filename and line number. def key_by_file_and_line(review) warn_hash = {} review.warnings.each do |warning| filename = Pathname.new(warning.match[:filename]).cleanpath.to_s line_num = warning.match[:line].to_i warn_hash[filename] = {} unless warn_hash.key?(filename) unless warn_hash[filename].key?(line_num) warn_hash[filename][line_num] = Set.new end warn_hash[filename][line_num] << warning.rule end warn_hash end # Print an ANSI escape-code formatted string (and a newline) # # @param text [String] the string to format # @param fg [String] foreground color # @param bg [String] background color # @param attr [String] any formatting options def ansi_print(text, fg, bg = nil, attr = nil) unless STDOUT.tty? puts text return end colors = %w(black red green yellow blue magenta cyan white) attrs = %w(reset bold dim underscore blink reverse hidden) escape = "\033[%sm" fmt = [] fmt << 30 + colors.index(fg.to_s) if fg fmt << 40 + colors.index(bg.to_s) if bg fmt << attrs.index(attr.to_s) if attr if fmt puts "#{escape % fmt.join(';')}#{text}#{escape % 0}" else puts text end end end end foodcritic-3.0.3/lib/foodcritic/rake_task.rb0000644000004100000410000000155212263752452021071 0ustar www-datawww-datarequire 'rake' require 'rake/tasklib' module FoodCritic module Rake class LintTask < ::Rake::TaskLib attr_accessor :name, :files attr_writer :options def initialize(name = :foodcritic) @name = name @files = [Dir.pwd] @options = {} yield self if block_given? define end def options {:fail_tags => ['correctness'], # differs to default cmd-line behaviour :cookbook_paths => @files, :exclude_paths => ['test/**/*', 'spec/**/*', 'features/**/*'] }.merge(@options) end def define desc "Lint Chef cookbooks" task(name) do result = FoodCritic::Linter.new.check(options) if result.warnings.any? puts result end fail result.to_s if result.failed? end end end end end foodcritic-3.0.3/lib/foodcritic/error_checker.rb0000644000004100000410000000130212263752452021733 0ustar www-datawww-datamodule FoodCritic # Expose if any errors are found in parsing class ErrorChecker < Ripper::SexpBuilder # Create a new instance of ErrorChecker # # @see Ripper::SexpBuilder#initialize def initialize(*args) super(*args) @found_error = false end # Was an error encountered during parsing? def error? @found_error end # Register with all available error handlers. def self.register_error_handlers error_methods = SexpBuilder.public_instance_methods.grep(/^on_.*_error$/) error_methods.sort.each do |err_meth| define_method(err_meth) { |*| @found_error = true } end end self.register_error_handlers end end foodcritic-3.0.3/lib/foodcritic/api.rb0000644000004100000410000004700012263752452017674 0ustar www-datawww-datarequire 'nokogiri' module FoodCritic # Helper methods that form part of the Rules DSL. module Api include FoodCritic::AST include FoodCritic::XML include FoodCritic::Chef include FoodCritic::Notifications class RecursedTooFarError < StandardError; end # Find attribute access by type. def attribute_access(ast, options = {}) options = {:type => :any, :ignore_calls => false}.merge!(options) return [] unless ast.respond_to?(:xpath) unless [:any, :string, :symbol, :vivified].include?(options[:type]) raise ArgumentError, "Node type not recognised" end case options[:type] when :any then vivified_attribute_access(ast, options) + standard_attribute_access(ast, options) when :vivified then vivified_attribute_access(ast, options) else standard_attribute_access(ast, options) end end # Does the specified recipe check for Chef Solo? def checks_for_chef_solo?(ast) raise_unless_xpath!(ast) # TODO: This expression is too loose, but also will fail to match other # types of conditionals. (! ast.xpath(%q{//*[self::if or self::unless]/*[self::aref or child::aref or self::call] [count(descendant::const[@value = 'Chef' or @value = 'Config']) = 2 and ( count(descendant::ident[@value='solo']) > 0 or count(descendant::tstring_content[@value='solo']) > 0 ) ]}).empty?) || ast.xpath('//if_mod[return][aref/descendant::ident/@value="solo"]/aref/ const_path_ref/descendant::const').map{|c|c['value']} == %w{Chef Config} end # Is the [chef-solo-search library](https://github.com/edelight/chef-solo-search) # available? def chef_solo_search_supported?(recipe_path) return false if recipe_path.nil? || ! File.exists?(recipe_path) # Look for the chef-solo-search library. # # TODO: This will not work if the cookbook that contains the library # is not under the same `cookbook_path` as the cookbook being checked. cbk_tree_path = Pathname.new(File.join(recipe_path, '../../..')) search_libs = Dir[File.join(cbk_tree_path.realpath, '*/libraries/search.rb')] # True if any of the candidate library files match the signature: # # class Chef # def search search_libs.any? do |lib| ! read_ast(lib).xpath(%q{//class[count(descendant::const[@value='Chef'] ) = 1]/descendant::def/ident[@value='search']}).empty? end end # The name of the cookbook containing the specified file. def cookbook_name(file) raise ArgumentError, 'File cannot be nil or empty' if file.to_s.empty? until (file.split(File::SEPARATOR) & standard_cookbook_subdirs).empty? do file = File.absolute_path(File.dirname(file.to_s)) end file = File.dirname(file) unless File.extname(file).empty? # We now have the name of the directory that contains the cookbook. # We also need to consult the metadata in case the cookbook name has been # overridden there. This supports only string literals. md_path = File.join(file, 'metadata.rb') if File.exists?(md_path) name = read_ast(md_path).xpath("//stmts_add/ command[ident/@value='name']/descendant::tstring_content/@value").to_s return name unless name.empty? end File.basename(file) end # The dependencies declared in cookbook metadata. def declared_dependencies(ast) raise_unless_xpath!(ast) # String literals. # # depends 'foo' deps = ast.xpath(%q{//command[ident/@value='depends']/ descendant::args_add/descendant::tstring_content[1]}) # Quoted word arrays are also common. # # %w{foo bar baz}.each do |cbk| # depends cbk # end deps = deps.to_a + word_list_values(ast, "//command[ident/@value='depends']") deps.uniq.map{|dep| dep['value'].strip } end # The key / value pair in an environment or role ruby file def field(ast, field_name) if field_name.nil? || field_name.to_s.empty? raise ArgumentError, "Field name cannot be nil or empty" end ast.xpath("//command[ident/@value='#{field_name}']") end # The value for a specific key in an environment or role ruby file def field_value(ast, field_name) field(ast, field_name).xpath('args_add_block/descendant::tstring_content [count(ancestor::args_add) = 1][count(ancestor::string_add) = 1] /@value').map{|a| a.to_s}.last end # Create a match for a specified file. Use this if the presence of the file # triggers the warning rather than content. def file_match(file) raise ArgumentError, "Filename cannot be nil" if file.nil? {:filename => file, :matched => file, :line => 1, :column => 1} end # Find Chef resources of the specified type. # TODO: Include blockless resources # # These are equivalent: # # find_resources(ast) # find_resources(ast, :type => :any) # # Restrict to a specific type of resource: # # find_resources(ast, :type => :service) # def find_resources(ast, options = {}) options = {:type => :any}.merge!(options) return [] unless ast.respond_to?(:xpath) scope_type = '' scope_type = "[@value='#{options[:type]}']" unless options[:type] == :any # TODO: Include nested resources (provider actions) no_actions = "[command/ident/@value != 'action']" ast.xpath("//method_add_block[command/ident#{scope_type}]#{no_actions}") end # Helper to return a comparable version for a string. def gem_version(version) Gem::Version.create(version) end # Retrieve the recipes that are included within the given recipe AST. # # These two usages are equivalent: # # included_recipes(ast) # included_recipes(ast, :with_partial_names => true) # def included_recipes(ast, options = {:with_partial_names => true}) raise_unless_xpath!(ast) filter = ['[count(descendant::args_add) = 1]'] # If `:with_partial_names` is false then we won't include the string # literal portions of any string that has an embedded expression. unless options[:with_partial_names] filter << '[count(descendant::string_embexpr) = 0]' end string_desc = '[descendant::args_add/string_literal]/descendant::tstring_content' included = ast.xpath([ "//command[ident/@value = 'include_recipe']", "//fcall[ident/@value = 'include_recipe']/following-sibling::arg_paren", ].map do |recipe_include| recipe_include + filter.join + string_desc end.join(' | ')) # Hash keyed by recipe name with matched nodes. included.inject(Hash.new([])){|h, i| h[i['value']] += [i]; h} end # Searches performed by the specified recipe that are literal strings. # Searches with a query formed from a subexpression will be ignored. def literal_searches(ast) return [] unless ast.respond_to?(:xpath) ast.xpath("//method_add_arg[fcall/ident/@value = 'search' and count(descendant::string_embexpr) = 0]/descendant::tstring_content") end # Create a match from the specified node. def match(node) raise_unless_xpath!(node) pos = node.xpath('descendant::pos').first return nil if pos.nil? {:matched => node.respond_to?(:name) ? node.name : '', :line => pos['line'].to_i, :column => pos['column'].to_i} end # Read the AST for the given Ruby source file def read_ast(file) source = if file.to_s.split(File::SEPARATOR).include?('templates') template_expressions_only(file) else File.read(file) end build_xml(Ripper::SexpBuilder.new(source).parse) end # Retrieve a single-valued attribute from the specified resource. def resource_attribute(resource, name) raise ArgumentError, "Attribute name cannot be empty" if name.empty? resource_attributes(resource)[name.to_s] end # Retrieve all attributes from the specified resource. def resource_attributes(resource, options={}) atts = {} name = resource_name(resource, options) atts[:name] = name unless name.empty? atts.merge!(normal_attributes(resource, options)) atts.merge!(block_attributes(resource)) atts end # Resources keyed by type, with an array of matching nodes for each. def resource_attributes_by_type(ast) result = {} resources_by_type(ast).each do |type,resources| result[type] = resources.map{|resource| resource_attributes(resource)} end result end # Retrieve the name attribute associated with the specified resource. def resource_name(resource, options = {}) raise_unless_xpath!(resource) options = {:return_expressions => false}.merge(options) if options[:return_expressions] name = resource.xpath('command/args_add_block') if name.xpath('descendant::string_add').size == 1 and name.xpath('descendant::string_literal').size == 1 and name.xpath('descendant::*[self::call or self::string_embexpr]').empty? name.xpath('descendant::tstring_content/@value').to_s else name end else # Preserve existing behaviour resource.xpath('string(command//tstring_content/@value)') end end # Resources in an AST, keyed by type. def resources_by_type(ast) raise_unless_xpath!(ast) result = Hash.new{|hash, key| hash[key] = Array.new} find_resources(ast).each do |resource| result[resource_type(resource)] << resource end result end # Return the type, e.g. 'package' for a given resource def resource_type(resource) raise_unless_xpath!(resource) type = resource.xpath('string(command/ident/@value)') if type.empty? raise ArgumentError, "Provided AST node is not a resource" end type end # Does the provided string look like ruby code? def ruby_code?(str) str = str.to_s return false if str.empty? checker = FoodCritic::ErrorChecker.new(str) checker.parse ! checker.error? end # Searches performed by the provided AST. def searches(ast) return [] unless ast.respond_to?(:xpath) ast.xpath("//fcall/ident[@value = 'search']") end # The list of standard cookbook sub-directories. def standard_cookbook_subdirs %w{attributes definitions files libraries providers recipes resources templates} end # Platforms declared as supported in cookbook metadata def supported_platforms(ast) platforms = ast.xpath('//command[ident/@value="supports"]/ descendant::*[self::string_literal or self::symbol_literal][position() = 1] [self::symbol_literal or count(descendant::string_add) = 1]/ descendant::*[self::tstring_content | self::ident]') platforms = platforms.to_a + word_list_values(ast, "//command[ident/@value='supports']") platforms.map do |platform| versions = platform.xpath('ancestor::args_add[position() > 1]/ string_literal/descendant::tstring_content/@value').map{|v| v.to_s} {:platform => platform['value'], :versions => versions} end.sort{|a,b| a[:platform] <=> b[:platform]} end # Template filename def template_file(resource) if resource['source'] resource['source'] elsif resource[:name] if resource[:name].respond_to?(:xpath) resource[:name] else "#{File.basename(resource[:name])}.erb" end end end def templates_included(all_templates, template_path, depth=1) raise RecursedTooFarError.new(template_path) if depth > 10 partials = read_ast(template_path).xpath('//*[self::command or child::fcall][descendant::ident/@value="render"]//args_add/ string_literal//tstring_content/@value').map{|p| p.to_s} Array(template_path) + partials.map do |included_partial| partial_path = Array(all_templates).find do |path| (Pathname.new(template_path).dirname + included_partial).to_s == path end if partial_path Array(partial_path) + templates_included(all_templates, partial_path, depth + 1) end end.flatten.uniq.compact end # Templates in the current cookbook def template_paths(recipe_path) Dir.glob(Pathname.new(recipe_path).dirname.dirname + 'templates' + '**/*', File::FNM_DOTMATCH).select do |path| File.file?(path) end.reject do |path| File.basename(path) == '.DS_Store' || File.extname(path) == '.swp' end end private def block_attributes(resource) # The attribute value may alternatively be a block, such as the meta # conditionals `not_if` and `only_if`. atts = {} resource.xpath("do_block/descendant::method_add_block[ count(ancestor::do_block) = 1][brace_block | do_block]").each do |batt| att_name = batt.xpath('string(method_add_arg/fcall/ident/@value)') if att_name and ! att_name.empty? and batt.children.length > 1 atts[att_name] = batt.children[1] end end atts end def block_depth(resource) resource.path.split('/').group_by{|e|e}['method_add_block'].size end # Recurse the nested arrays provided by Ripper to create a tree we can more # easily apply expressions to. def build_xml(node, doc = nil, xml_node=nil) doc, xml_node = xml_document(doc, xml_node) if node.respond_to?(:each) # First child is the node name node.drop(1).each do |child| if position_node?(child) xml_position_node(doc, xml_node, child) else if ast_node_has_children?(child) # The AST structure is different for hashes so we have to treat # them separately. if ast_hash_node?(child) xml_hash_node(doc, xml_node, child) else xml_array_node(doc, xml_node, child) end else xml_node['value'] = child.to_s unless child.nil? end end end end xml_node end def extract_attribute_value(att, options = {}) if ! att.xpath('args_add_block[count(descendant::args_add)>1]').empty? att.xpath('args_add_block').first elsif ! att.xpath('args_add_block/args_add/ var_ref/kw[@value="true" or @value="false"]').empty? att.xpath('string(args_add_block/args_add/ var_ref/kw/@value)') == 'true' elsif ! att.xpath('descendant::assoc_new').empty? att.xpath('descendant::assoc_new') elsif ! att.xpath('descendant::int').empty? att.xpath('descendant::int/@value').to_s elsif att.xpath('descendant::symbol').empty? if options[:return_expressions] and (att.xpath('descendant::string_add').size != 1 or ! att.xpath('descendant::*[self::call or self::string_embexpr]').empty?) att else att.xpath('string(descendant::tstring_content/@value)') end else att.xpath('string(descendant::symbol/ident/@value)').to_sym end end def ignore_attributes_xpath(ignores) Array(ignores).map do |ignore| "[count(descendant::*[@value='#{ignore}']) = 0]" end.join end def node_method?(meth, cookbook_dir) chef_dsl_methods.include?(meth) || patched_node_method?(meth, cookbook_dir) end def normal_attributes(resource, options = {}) atts = {} resource.xpath('do_block/descendant::*[self::command or self::method_add_arg][count(ancestor::do_block) >= 1]').each do |att| blocks = att.xpath('ancestor::method_add_block/method_add_arg/fcall') next if blocks.any?{|a| block_depth(a) > block_depth(resource)} att_name = att.xpath('string(ident/@value | fcall/ident[@value="variables"]/@value)') unless att_name.empty? atts[att_name] = extract_attribute_value(att, options) end end atts end def patched_node_method?(meth, cookbook_dir) return false if cookbook_dir.nil? || ! Dir.exists?(cookbook_dir) # TODO: Modify this to work with multiple cookbook paths cbk_tree_path = Pathname.new(File.join(cookbook_dir, '..')) libs = Dir[File.join(cbk_tree_path.realpath, '*/libraries/*.rb')] libs.any? do |lib| ! read_ast(lib).xpath(%Q{//class[count(descendant::const[@value='Chef']) > 0][count(descendant::const[@value='Node']) > 0]/descendant::def/ ident[@value='#{meth.to_s}']}).empty? end end def raise_unless_xpath!(ast) unless ast.respond_to?(:xpath) raise ArgumentError, "AST must support #xpath" end end # XPath custom function class AttFilter def is_att_type(value) return [] unless value.respond_to?(:select) value.select do |n| %w{ automatic_attrs default default_unless force_default force_override node normal normal_unless override override_unless set set_unless }.include?(n.to_s) end end end def standard_attribute_access(ast, options) if options[:type] == :any [:string, :symbol].map do |type| standard_attribute_access(ast, options.merge(:type => type)) end.inject(:+) else type = if options[:type] == :string 'tstring_content' else '*[self::symbol or self::dyna_symbol]' end expr = '//*[self::aref_field or self::aref][count(method_add_arg) = 0]' expr += '[count(is_att_type(descendant::var_ref/ident/@value)) = count(descendant::var_ref/ident/@value)]' expr += '[is_att_type(descendant::ident' expr += '[not(ancestor::aref/call)]' if options[:ignore_calls] expr += '/@value)]' expr += ignore_attributes_xpath(options[:ignore]) expr += "/descendant::#{type}" if options[:type] == :string expr += '[count(ancestor::dyna_symbol) = 0]' end ast.xpath(expr, AttFilter.new).sort end end def template_expressions_only(file) exprs = Template::ExpressionExtractor.new.extract(File.read(file)) lines = Array.new(exprs.map{|e| e[:line]}.max || 0, '') exprs.each do |e| lines[e[:line] -1] += ';' unless lines[e[:line] -1].empty? lines[e[:line] -1] += e[:code] end lines.join("\n") end def vivified_attribute_access(ast, options={}) calls = ast.xpath(%Q{//*[self::call or self::field] [is_att_type(vcall/ident/@value) or is_att_type(var_ref/ident/@value)] #{ignore_attributes_xpath(options[:ignore])} [@value='.'][count(following-sibling::arg_paren) = 0]}, AttFilter.new) calls.select do |call| call.xpath("aref/args_add_block").size == 0 and (call.xpath("descendant::ident").size > 1 and ! node_method?(call.xpath("ident/@value").to_s.to_sym, options[:cookbook_dir])) end.sort end def word_list_values(ast, xpath) var_ref = ast.xpath("#{xpath}/descendant::var_ref/ident") if var_ref.empty? [] else ast.xpath(%Q{descendant::block_var/params/ident#{var_ref.first['value']}/ ancestor::method_add_block/call/descendant::tstring_content}) end end end end foodcritic-3.0.3/lib/foodcritic/version.rb0000644000004100000410000000012012263752452020600 0ustar www-datawww-datamodule FoodCritic # The current version of foodcritic VERSION = '3.0.3' end foodcritic-3.0.3/lib/foodcritic/notifications.rb0000644000004100000410000001233612263752452022000 0ustar www-datawww-datamodule FoodCritic # This module contains the logic for the parsing of # [Chef Notifications](http://wiki.opscode.com/display/chef/Resources#Resources-Notifications). module Notifications # Extracts notification details from the provided AST, returning an # array of notification hashes. # # template "/etc/www/configures-apache.conf" do # notifies :restart, "service[apache]" # end # # => [{:resource_name=>"apache", # :resource_type=>:service, # :type=>:notifies, # :style=>:new, # :action=>:restart, # :timing=>:delayed}] # def notifications(ast) # Sanity check the AST provided. return [] unless ast.respond_to?(:xpath) # We are mapping each `notifies` or `subscribes` line in the provided # AST to a Hash with the extracted details. notification_nodes(ast).map do |notify| # Chef supports two styles of notification. notified_resource = if new_style_notification?(notify) # `notifies :restart, "service[foo]"` new_style_notification(notify) else # `notifies :restart, resources(:service => "foo")` old_style_notification(notify) end # Ignore if the notification was not parsed next unless notified_resource # Now merge the extract notification details with the attributes # that are common to both styles of notification. notified_resource.merge({ # The `:type` of notification: `:subscribes` or `:notifies`. :type => notification_type(notify), # The `:style` of notification: `:new` or `:old`. :style => new_style_notification?(notify) ? :new : :old, # The target resource action. :action => notification_action(notify), # The notification timing. Either `:immediate` or `:delayed`. :timing => notification_timing(notify) }) end.compact end private # Extract the `:resource_name` and `:resource_type` from a new-style # notification. def new_style_notification(notify) # Given `notifies :restart, "service[foo]"` the target is the # `"service[foo]"` string portion. target_path = 'args_add_block/args_add/descendant:: tstring_content[count(ancestor::dyna_symbol) = 0]/@value' target = notify.xpath("arg_paren/#{target_path} | #{target_path}").to_s # Test the target string against the standard syntax for a new-style # notification: `resource_type[resource_name]`. match = target.match(/^([^\[]+)\[(.*)\]$/) return nil unless match # Convert the captured resource type and name to symbols. resource_type, resource_name = match.captures.tap{|m| m[0] = m[0].to_sym} # Normally the `resource_name` will be a simple string. However in the # case where it has an embedded sub-expression then we will return the # AST to the caller to handle. if notify.xpath('descendant::string_embexpr').empty? return nil if resource_name.empty? else resource_name = notify.xpath('args_add_block/args_add/string_literal') end {:resource_name => resource_name, :resource_type => resource_type} end # Extract the `:resource_name` and `:resource_type` from an old-style # notification. def old_style_notification(notify) resources = resource_hash_references(notify) resource_type = resources.xpath('symbol[1]/ident/@value').to_s.to_sym resource_name = resources.xpath('string_add[1][count(../ descendant::string_add) = 1]/tstring_content/@value').to_s resource_name = resources if resource_name.empty? {:resource_name => resource_name, :resource_type => resource_type} end def notification_timing(notify) # The notification timing should be the last symbol on the notifies element. timing = notify.xpath('args_add_block/args_add/symbol_literal[last()]/ symbol/ident[1]/@value') if timing.empty? # "By default, notifications are :delayed" :delayed else case timing.first.to_s.to_sym # Both forms are valid, but we return `:immediate` for both to avoid # the caller having to recognise both. when :immediately, :immediate then :immediate # Pass the timing through unmodified if we don't recognise it. else timing.first.to_s.to_sym end end end def new_style_notification?(notify) resource_hash_references(notify).empty? end def notification_action(notify) notify.xpath('descendant::symbol[1]/ident/@value | descendant::dyna_symbol[1]/xstring_add/tstring_content/@value').first.to_s.to_sym end def notification_nodes(ast, &block) type_path = '[ident/@value="notifies" or ident/@value="subscribes"]' ast.xpath("descendant::command#{type_path} | descendant::method_add_arg[fcall#{type_path}]") end def notification_type(notify) notify.xpath('ident/@value[1] | fcall/ident/@value[1]').to_s.to_sym end def resource_hash_references(ast) ast.xpath('descendant::method_add_arg[fcall/ident/ @value="resources"]/descendant::assoc_new') end end end foodcritic-3.0.3/lib/foodcritic/linter.rb0000644000004100000410000002027312263752452020423 0ustar www-datawww-datarequire 'optparse' require 'ripper' require 'rubygems' require 'set' module FoodCritic # The main entry point for linting your Chef cookbooks. class Linter include FoodCritic::Api # The default version that will be used to determine relevant rules. This # can be over-ridden at the command line with the `--chef-version` option. DEFAULT_CHEF_VERSION = "11.4.0" attr_reader :chef_version # Perform a lint check. This method is intended for use by the command-line # wrapper. If you are programatically using foodcritic you should use # `#check` below. def self.check(cmd_line) # The first item is the string output, the second is exit code. return [cmd_line.help, 0] if cmd_line.show_help? return [cmd_line.version, 0] if cmd_line.show_version? if ! cmd_line.valid_grammar? [cmd_line.help, 4] elsif cmd_line.valid_paths? review = FoodCritic::Linter.new.check(cmd_line.options) [review, review.failed? ? 3 : 0] else [cmd_line.help, 2] end end # Review the cookbooks at the provided path, identifying potential # improvements. # # The `options` are a hash where the valid keys are: # # * `:cookbook_paths` - Cookbook paths to lint # * `:role_paths` - Role paths to lint # * `:include_rules` - Paths to additional rules to apply # * `:search_gems - If true then search for custom rules in installed gems. # * `:tags` - The tags to filter rules based on # * `:fail_tags` - The tags to fail the build on # * `:exclude_paths` - Paths to exclude from linting # def check(options = {}) options = setup_defaults(options) @options = options @chef_version = options[:chef_version] || DEFAULT_CHEF_VERSION warnings = []; last_dir = nil; matched_rule_tags = Set.new load_rules paths = specified_paths!(options) # Loop through each file to be processed and apply the rules files_to_process(paths).each do |p| relevant_tags = if options[:tags].any? options[:tags] else cookbook_tags(p[:filename]) end active_rules(relevant_tags).each do |rule| state = { :path_type => p[:path_type], :file => p[:filename], :ast => read_ast(p[:filename]), :rule => rule, :last_dir => last_dir } matches = if p[:path_type] == :cookbook cookbook_matches(state) else other_matches(state) end matches = remove_ignored(matches, state[:rule], state[:file]) # Convert the matches into warnings matches.each do |match| warnings << Warning.new(state[:rule], {:filename => state[:file]}.merge(match), options) matched_rule_tags << state[:rule].tags end end last_dir = cookbook_dir(p[:filename]) end Review.new(paths, warnings) end def cookbook_matches(state) cbk_matches = matches(state[:rule].recipe, state[:ast], state[:file]) if dsl_method_for_file(state[:file]) cbk_matches += matches(state[:rule].send( dsl_method_for_file(state[:file])), state[:ast], state[:file]) end per_cookbook_rules(state[:last_dir], state[:file]) do if File.basename(state[:file]) == 'metadata.rb' cbk_matches += matches( state[:rule].metadata, state[:ast], state[:file]) end cbk_matches += matches( state[:rule].cookbook, cookbook_dir(state[:file])) end cbk_matches end def other_matches(state) matches(state[:rule].send(state[:path_type]), state[:ast], state[:file]) end # Load the rules from the (fairly unnecessary) DSL. def load_rules load_rules!(@options) unless defined? @rules end def load_rules!(options) rule_files = [File.join(File.dirname(__FILE__), 'rules.rb')] rule_files << options[:include_rules] rule_files << rule_files_in_gems if options[:search_gems] @rules = RuleDsl.load(rule_files.flatten.compact, chef_version) end private def rule_files_in_gems Gem::Specification.latest_specs(true).map do |spec| spec.matches_for_glob('foodcritic/rules/**/*.rb') end.flatten end def remove_ignored(matches, rule, file) matches.reject do |m| matched_file = m[:filename] || file (line = m[:line]) && File.exist?(matched_file) && ignore_line_match?(File.readlines(matched_file)[line-1], rule) end end def ignore_line_match?(line, rule) ignores = line.to_s[/\s+#\s*(.*)/, 1] if ignores and ignores.include?('~') ! rule.matches_tags?(ignores.split(/[ ,]/)) else false end end # Some rules are version specific. def applies_to_version?(rule, version) return true unless version rule.applies_to.yield(Gem::Version.create(version)) end def cookbook_tags(file) tags = [] fc_file = "#{cookbook_dir(file)}/.foodcritic" if File.exist? fc_file begin tag_text = File.read fc_file tags = tag_text.split(/\s/) rescue Errno::EACCES end end tags end def active_rules(tags) @rules.select do |rule| rule.matches_tags?(tags) and applies_to_version?(rule, chef_version) end end def cookbook_dir(file) Pathname.new(File.join(File.dirname(file), case File.basename(file) when 'metadata.rb' then '' when /\.erb$/ then '../..' else '..' end)).cleanpath end def dsl_method_for_file(file) dir_mapping = { 'attributes' => :attributes, 'libraries' => :library, 'providers' => :provider, 'resources' => :resource, 'templates' => :template } if file.end_with? '.erb' dir_mapping[File.basename(File.dirname(File.dirname(file)))] else dir_mapping[File.basename(File.dirname(file))] end end # Return the files within a cookbook tree that we are interested in trying # to match rules against. def files_to_process(paths) paths.reject{|type, _| type == :exclude}.map do |path_type, dirs| dirs.map do |dir| exclusions = [] unless paths[:exclude].empty? exclusions = Dir.glob(paths[:exclude].map{|p| File.join(dir, p)}) end if File.directory?(dir) glob = if path_type == :cookbook '{metadata.rb,{attributes,definitions,libraries,providers,recipes,resources}/*.rb,templates/*/*.erb}' else '*.rb' end (Dir.glob(File.join(dir, glob)) + Dir.glob(File.join(dir, "*/#{glob}")) - exclusions) else dir unless exclusions.include?(dir) end end.compact.flatten.map do |filename| {:filename => filename, :path_type => path_type} end end.flatten end # Invoke the DSL method with the provided parameters. def matches(match_method, *params) return [] unless match_method.respond_to?(:yield) matches = match_method.yield(*params) return [] unless matches.respond_to?(:each) # We convert Nokogiri nodes to matches transparently matches.map do |m| if m.respond_to?(:node_name) match(m) elsif m.respond_to?(:xpath) m.to_a.map{|m| match(m)} else m end end.flatten end def per_cookbook_rules(last_dir, file) yield if last_dir != cookbook_dir(file) end def specified_paths!(options) paths = Hash[options.map do |key, value| [key, Array(value)] if key.to_s.end_with?('paths') end.compact] unless paths.find{|k, v| k != :exclude_paths and ! v.empty?} raise ArgumentError, "A cookbook path or role path must be specified" end Hash[paths.map do |key, value| [key.to_s.sub(/_paths$/, '').to_sym, value] end] end def setup_defaults(options) {:tags => [], :fail_tags => [], :include_rules => [], :exclude_paths => [], :cookbook_paths => [], :role_paths => []}.merge(options) end end end foodcritic-3.0.3/lib/foodcritic/command_line.rb0000644000004100000410000001215712263752452021555 0ustar www-datawww-datamodule FoodCritic # Command line parsing. class CommandLine # Create a new instance of CommandLine # # @param [Array] args The command line arguments def initialize(args) @args = args @original_args = args.dup @options = { :fail_tags => [], :tags => [], :include_rules => [], :cookbook_paths => [], :role_paths => [], :environment_paths => [] } @parser = OptionParser.new do |opts| opts.banner = 'foodcritic [cookbook_paths]' opts.on("-t", "--tags TAGS", "Only check against rules with the specified tags.") do |t| @options[:tags] << t end opts.on("-f", "--epic-fail TAGS", "Fail the build if any of the specified tags are matched ('any' -> fail on any match).") do |t| @options[:fail_tags] << t end opts.on("-c", "--chef-version VERSION", "Only check against rules valid for this version of Chef.") do |c| @options[:chef_version] = c end opts.on("-B", "--cookbook-path PATH", "Cookbook path(s) to check.") do |b| @options[:cookbook_paths] << b end opts.on("-C", "--[no-]context", "Show lines matched against rather than the default summary.") do |c| @options[:context] = c end opts.on("-E", "--environment-path PATH", "Environment path(s) to check.") do |e| @options[:environment_paths] << e end opts.on("-I", "--include PATH", "Additional rule file path(s) to load.") do |i| @options[:include_rules] << i end opts.on("-G", "--search-gems", "Search rubygems for rule files with the path foodcritic/rules/**/*.rb") do |g| @options[:search_gems] = true end opts.on("-R", "--role-path PATH", "Role path(s) to check.") do |r| @options[:role_paths] << r end opts.on("-S", "--search-grammar PATH", "Specify grammar to use when validating search syntax.") do |s| @options[:search_grammar] = s end opts.on("-V", "--version", "Display the foodcritic version.") do |v| @options[:version] = true end end # -v is not implemented but OptionParser gives the Foodcritic's version # if that flag is passed if args.include? '-v' help else begin @parser.parse!(args) unless show_help? rescue OptionParser::InvalidOption => e e.recover args end end end # Show the command help to the end user? # # @return [Boolean] True if help should be shown. def show_help? @args.length == 1 and @args.first == '--help' end # The help text. # # @return [String] Help text describing the command-line options available. def help @parser.help end # Show the current version to the end user? # # @return [Boolean] True if the version should be shown. def show_version? @options.key?(:version) end # The version string. # # @return [String] Current installed version. def version "foodcritic #{FoodCritic::VERSION}" end # If the paths provided are valid # # @return [Boolean] True if the paths exist. def valid_paths? paths = options[:cookbook_paths] + options[:role_paths] + options[:environment_paths] paths.any? && paths.all?{|path| File.exists?(path) } end # Is the search grammar specified valid? # # @return [Boolean] True if the grammar has not been provided or can be # loaded. def valid_grammar? return true unless options.key?(:search_grammar) return false unless File.exists?(options[:search_grammar]) search = FoodCritic::Chef::Search.new search.create_parser([options[:search_grammar]]) search.parser? end # The cookbook paths to check # # @return [Array] Path(s) to the cookbook(s) being checked. def cookbook_paths @args + Array(@options[:cookbook_paths]) end # The role paths to check # # @return [Array] Path(s) to the role directories being checked. def role_paths Array(@options[:role_paths]) end # The environment paths to check # # @return [Array] Path(s) to the environment directories being checked. def environment_paths Array(@options[:environment_paths]) end # If matches should be shown with context rather than the default summary # display. # # @return [Boolean] True if matches should be shown with context. def show_context? @options[:context] end # Parsed command-line options # # @return [Hash] The parsed command-line options. def options original_options.merge({ :cookbook_paths => cookbook_paths, :role_paths => role_paths, :environment_paths => environment_paths, }) end # The original command-line options # # @return [Hash] The original command-line options. def original_options @options end end end foodcritic-3.0.3/lib/foodcritic/chef.rb0000644000004100000410000000732112263752452020032 0ustar www-datawww-datamodule FoodCritic # Encapsulates functions that previously were calls to the Chef gem. module Chef def chef_dsl_methods load_metadata @dsl_metadata[:dsl_methods].map(&:to_sym) end def chef_node_methods load_metadata @dsl_metadata[:node_methods].map(&:to_sym) end # Is the specified action valid for the type of resource? def resource_action?(resource_type, action) resource_check?(:actions, resource_type, action) end # Is the specified attribute valid for the type of resource? def resource_attribute?(resource_type, attribute_name) resource_check?(:attributes, resource_type, attribute_name) end # Is this a valid Lucene query? def valid_query?(query) raise ArgumentError, "Query cannot be nil or empty" if query.to_s.empty? # Attempt to create a search query parser search = FoodCritic::Chef::Search.new search.create_parser(search.chef_search_grammars) if search.parser? search.parser.parse(query.to_s) else # If we didn't manage to get a parser then we can't know if the query # is valid or not. true end end private # To avoid the runtime hit of loading the Chef gem and its dependencies # we load the DSL metadata from a JSON file shipped with our gem. # # The DSL metadata doesn't necessarily reflect the version of Chef in the # local user gemset. def load_metadata version = self.respond_to?(:chef_version) ? chef_version : Linter::DEFAULT_CHEF_VERSION metadata_path = [version, version.sub(/\.[a-z].*/, ''), Linter::DEFAULT_CHEF_VERSION].map do |version| metadata_path(version) end.find{|m| File.exists?(m)} @dsl_metadata ||= Yajl::Parser.parse(IO.read(metadata_path), :symbolize_keys => true) end def metadata_path(chef_version) File.join(File.dirname(__FILE__), '..', '..', "chef_dsl_metadata/chef_#{chef_version}.json") end def resource_check?(key, resource_type, field) if resource_type.to_s.empty? || field.to_s.empty? raise ArgumentError, "Arguments cannot be nil or empty." end load_metadata resource_fields = @dsl_metadata[key] # If the resource type is not recognised then it may be a user-defined # resource. We could introspect these but at present we simply return # true. return true unless resource_fields.include?(resource_type.to_sym) # Otherwise the resource field must exist in our metadata to succeed resource_fields[resource_type.to_sym].include?(field.to_s) end class Search # The search grammars that ship with any Chef gems installed locally. # These are returned in descending version order (a newer Chef version # could break our ability to load the grammar). def chef_search_grammars Gem.path.map do |gem_path| Dir["#{gem_path}/gems/chef-*/**/lucene.treetop"] end.flatten.sort.reverse end # Create the search parser from the first loadable grammar. def create_parser(grammar_paths) @search_parser ||= grammar_paths.inject(nil) do |parser,lucene_grammar| begin break parser unless parser.nil? # Don't instantiate custom nodes Treetop.load_from_string( IO.read(lucene_grammar).gsub(/<[^>]+>/, '')) LuceneParser.new rescue # Silently swallow and try the next grammar end end end # Has the search parser been loaded? def parser? ! @search_parser.nil? end # The search parser def parser @search_parser end end end end foodcritic-3.0.3/lib/foodcritic/dsl.rb0000644000004100000410000000441012263752452017703 0ustar www-datawww-datarequire 'pathname' module FoodCritic # The DSL methods exposed for defining rules. A minimal example rule: # # rule "FC123", "My rule name" do # tags %w{style attributes} # recipe do |ast| # ## Rule implementation body # end # end # # * Each rule is defined within a `rule` block that defines the code and name # of the rule. # * Each rule block may contain further nested blocks for the components of # the cookbook that it is interested in linting. # For example `cookbook`, `recipe` or `library`. # # * Further DSL methods are available to define the `tags` and Chef versions # the rule `applies_to`. # class RuleDsl attr_reader :rules attr_reader :chef_version include Api def initialize(chef_version=Linter::DEFAULT_CHEF_VERSION) @chef_version = chef_version end # Define a new rule, the outer block of a rule definition. def rule(code, name, &block) @rules = [] if @rules.nil? @rules << Rule.new(code, name) yield self end # Add tags to the rule which can be used by the end user to filter the rules # to be applied. def tags(tags) rules.last.tags += tags end # Alternative to tags. Commonly used to constrain a rule to run only when # linting specific Chef versions. def applies_to(&block) rules.last.applies_to = block end def self.rule_block(name) define_method(name) do |&block| rules.last.send("#{name}=".to_sym, block) end end # The most frequently used block within a rule. A slight misnomer because # `recipe` rule blocks are also evaluated against providers. rule_block :recipe rule_block :cookbook rule_block :metadata rule_block :resource rule_block :attributes rule_block :provider rule_block :library rule_block :template rule_block :environment rule_block :role # Load the ruleset(s). def self.load(paths, chef_version=Linter::DEFAULT_CHEF_VERSION) dsl = RuleDsl.new(chef_version) paths.map do |path| File.directory?(path) ? Dir["#{path}/**/*.rb"].sort : path end.flatten.each do |path| dsl.instance_eval(File.read(path), path) end dsl.rules end end end foodcritic-3.0.3/lib/foodcritic/template.rb0000644000004100000410000000346112263752452020741 0ustar www-datawww-datamodule FoodCritic module Template # Extract expressions <%= expr %> from Erb templates. class ExpressionExtractor include Erubis::Basic::Converter def initialize init_converter({}) end def extract(template_code) @expressions = [] convert(template_code) expressions(template_code) end def add_expr(src, code, indicator) if indicator == '=' @expressions << {:type => :expression, :code => code.strip} end end def add_text(src, text) end def add_preamble(codebuf) end def add_postamble(codebuf) end def add_stmt(src, code) @expressions << {:type => :statement, :code => code.strip} end private def expressions(template_code) expr_lines = expressions_with_lines(template_code) expr_lines.map do |expr, line| e = @expressions.find{|e| e[:code] == expr} {:code => expr, :type => e[:type], :line => line} if e end.compact end def expressions_with_lines(template_code) lines = lines_with_offsets(template_code) expression_offsets(template_code).map do |expr_offset, code| [code, lines.find {|line, offset| offset >= expr_offset}.first] end end def expression_offsets(template_code) expr_offsets = [] template_code.scan(DEFAULT_REGEXP) do |m| expr_offsets << [Regexp.last_match.offset(0).first, m[1].strip] end expr_offsets end def lines_with_offsets(template_code) line_offsets = [] template_code.scan(/$/) do |m| line_offsets << Regexp.last_match.offset(0).first end line_offsets.each_with_index.map{| pos, ln| [ln +1, pos]} end end end end foodcritic-3.0.3/lib/foodcritic.rb0000644000004100000410000000117312263752452017124 0ustar www-datawww-datarequire 'pathname' require 'gherkin' require 'treetop' require 'ripper' require 'yajl' require 'erubis' require_relative 'foodcritic/chef' require_relative 'foodcritic/command_line' require_relative 'foodcritic/domain' require_relative 'foodcritic/error_checker' require_relative 'foodcritic/notifications' require_relative 'foodcritic/ast' require_relative 'foodcritic/xml' require_relative 'foodcritic/api' require_relative 'foodcritic/dsl' require_relative 'foodcritic/linter' require_relative 'foodcritic/output' require_relative 'foodcritic/rake_task' require_relative 'foodcritic/template' require_relative 'foodcritic/version' foodcritic-3.0.3/metadata.yml0000644000004100000410000002067112263752452016213 0ustar www-datawww-data--- !ruby/object:Gem::Specification name: foodcritic version: !ruby/object:Gem::Version version: 3.0.3 platform: ruby authors: - Andrew Crump autorequire: bindir: bin cert_chain: [] date: 2013-10-13 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: gherkin requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 2.11.7 type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 2.11.7 - !ruby/object:Gem::Dependency name: nokogiri requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 1.5.4 type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 1.5.4 - !ruby/object:Gem::Dependency name: rake requirement: !ruby/object:Gem::Requirement requirements: - - ! '>=' - !ruby/object:Gem::Version version: '0' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ! '>=' - !ruby/object:Gem::Version version: '0' - !ruby/object:Gem::Dependency name: treetop requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 1.4.10 type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 1.4.10 - !ruby/object:Gem::Dependency name: yajl-ruby requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 1.1.0 type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 1.1.0 - !ruby/object:Gem::Dependency name: erubis requirement: !ruby/object:Gem::Requirement requirements: - - ! '>=' - !ruby/object:Gem::Version version: '0' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ! '>=' - !ruby/object:Gem::Version version: '0' description: Lint tool for Opscode Chef cookbooks. email: executables: - foodcritic extensions: [] extra_rdoc_files: [] files: - chef_dsl_metadata/chef_10.20.0.json - chef_dsl_metadata/chef_10.12.0.json - chef_dsl_metadata/chef_10.18.2.json - chef_dsl_metadata/chef_10.26.0.json - chef_dsl_metadata/chef_0.10.10.json - chef_dsl_metadata/chef_0.9.4.json - chef_dsl_metadata/chef_0.10.8.json - chef_dsl_metadata/chef_10.14.4.json - chef_dsl_metadata/chef_0.9.12.json - chef_dsl_metadata/chef_10.22.0.json - chef_dsl_metadata/chef_0.10.6.json - chef_dsl_metadata/chef_11.0.0.json - chef_dsl_metadata/chef_0.9.8.json - chef_dsl_metadata/chef_11.4.0.json - chef_dsl_metadata/chef_0.8.14.json - chef_dsl_metadata/chef_0.9.18.json - chef_dsl_metadata/chef_10.16.0.json - chef_dsl_metadata/chef_11.4.2.json - chef_dsl_metadata/chef_0.9.16.json - chef_dsl_metadata/chef_0.9.2.json - chef_dsl_metadata/chef_0.9.6.json - chef_dsl_metadata/chef_10.16.6.json - chef_dsl_metadata/chef_10.16.4.json - chef_dsl_metadata/chef_0.9.14.json - chef_dsl_metadata/chef_10.18.0.json - chef_dsl_metadata/chef_0.10.2.json - chef_dsl_metadata/chef_0.9.0.json - chef_dsl_metadata/chef_0.8.16.json - chef_dsl_metadata/chef_0.10.4.json - chef_dsl_metadata/chef_11.4.4.json - chef_dsl_metadata/chef_0.10.0.json - chef_dsl_metadata/chef_10.16.2.json - chef_dsl_metadata/chef_10.24.0.json - chef_dsl_metadata/chef_11.6.0.json - chef_dsl_metadata/chef_10.24.4.json - chef_dsl_metadata/chef_10.14.2.json - chef_dsl_metadata/chef_10.14.0.json - chef_dsl_metadata/chef_11.2.0.json - chef_dsl_metadata/chef_0.9.10.json - lib/foodcritic/dsl.rb - lib/foodcritic/command_line.rb - lib/foodcritic/rake_task.rb - lib/foodcritic/chef.rb - lib/foodcritic/ast.rb - lib/foodcritic/api.rb - lib/foodcritic/output.rb - lib/foodcritic/xml.rb - lib/foodcritic/template.rb - lib/foodcritic/linter.rb - lib/foodcritic/error_checker.rb - lib/foodcritic/domain.rb - lib/foodcritic/rules.rb - lib/foodcritic/version.rb - lib/foodcritic/notifications.rb - lib/foodcritic.rb - bin/foodcritic - spec/spec_helper.rb - spec/regression/regression_spec.rb - spec/regression/expected-output.txt - spec/regression/cookbooks.txt - spec/foodcritic/template_spec.rb - spec/foodcritic/command_line_spec.rb - spec/foodcritic/chef_spec.rb - spec/foodcritic/api_spec.rb - spec/foodcritic/linter_spec.rb - spec/foodcritic/domain_spec.rb - spec/regression_helpers.rb - features/045_check_for_cookbook_name_in_metadata.feature - features/choose_rules_to_apply.feature - features/030_check_for_debugger_breakpoints.feature - features/006_check_file_mode.feature - features/050_check_for_invalid_name.feature - features/029_check_for_no_leading_cookbook_name.feature - features/include_custom_rules.feature - features/031_check_for_metadata_existence.feature - features/checking_all_types_of_file.feature - features/021_check_for_dodgy_lwrp_conditions.feature - features/051_check_for_template_partial_loops.feature - features/015_check_for_definitions.feature - features/041_check_raw_download.feature - features/individual_file.feature - features/multiple_paths.feature - features/007_check_for_undeclared_recipe_dependencies.feature - features/046_check_for_assign_unless_nil_attributes.feature - features/023_check_for_condition_around_resource.feature - features/003_check_for_chef_server.feature - features/018_check_for_old_lwrp_notification_syntax.feature - features/043_check_for_old_notification_style.feature - features/002_check_string_interpolation.feature - features/044_check_for_bare_attribute_keys.feature - features/028_check_for_incorrect_platform_method.feature - features/008_check_for_boilerplate_metadata.feature - features/039_check_for_key_access_to_node_methods.feature - features/026_check_for_conditional_block_string.feature - features/010_check_search_syntax.feature - features/show_lines_matched.feature - features/005_check_for_resource_repetition.feature - features/012_check_for_deprecated_readme_format.feature - features/017_check_for_no_lwrp_notifications.feature - features/support/cookbook_helpers.rb - features/support/env.rb - features/support/command_helpers.rb - features/032_check_for_invalid_notification_timing.feature - features/continuous_integration_support.feature - features/034_check_for_unused_template_variables.feature - features/038_check_for_invalid_action.feature - features/022_check_for_dodgy_conditions_within_loop.feature - features/025_check_for_deprecated_gem_install.feature - features/004_check_service_resource_used.feature - features/sort_warnings.feature - features/limit_rules_to_specific_versions.feature - features/step_definitions/cookbook_steps.rb - features/042_check_for_deprecated_require_recipe.feature - features/024_check_for_missing_platforms.feature - features/command_line_help.feature - features/049_check_for_role_name_mismatch_with_file_name.feature - features/013_check_for_hardcoded_tmpdir.feature - features/047_check_for_attribute_assignment_without_precedence.feature - features/011_check_for_markdown_readme.feature - features/specify_search_grammar.feature - features/019_check_for_consistent_node_access.feature - features/014_check_for_long_ruby_blocks.feature - features/037_check_for_invalid_notification_action.feature - features/ignore_via_line_comments.feature - features/016_check_for_no_lwrp_default_action.feature - features/033_check_for_missing_template.feature - features/048_check_for_shellout.feature - features/040_check_raw_git_usage.feature - features/009_check_for_unrecognised_resource_attributes.feature - features/build_framework_support.feature - features/027_check_for_internal_attribute_use.feature - CHANGELOG.md - README.md - LICENSE - man/foodcritic.1.ronn - man/foodcritic.1 homepage: http://foodcritic.io licenses: - MIT metadata: {} post_install_message: rdoc_options: [] require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement requirements: - - ! '>=' - !ruby/object:Gem::Version version: 1.9.2 required_rubygems_version: !ruby/object:Gem::Requirement requirements: - - ! '>=' - !ruby/object:Gem::Version version: '0' requirements: [] rubyforge_project: rubygems_version: 2.0.7 signing_key: specification_version: 4 summary: foodcritic-3.0.3 test_files: [] foodcritic-3.0.3/man/0000755000004100000410000000000012263752452014455 5ustar www-datawww-datafoodcritic-3.0.3/man/foodcritic.10000644000004100000410000000347212263752452016672 0ustar www-datawww-data.\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . .TH "FOODCRITIC" "1" "August 2013" "" "" . .SH "NAME" \fBfoodcritic\fR \- lint tool for chef cookbooks . .SH "SYNOPSIS" \fBfoodcritic\fR [\fIoptions\fR\.\.\.] \fIcookbook\fR\.\.\. . .SH "DESCRIPTION" \fBfoodcritic\fR makes it easier to flag problems in your Chef cookbooks that will cause Chef to blow up when you attempt to converge\. This is about faster feedback\. . .P Each \fBcookbook\fR path specified will be examined for common problems and poor style\. . .SH "OPTIONS" . .TP \fB\-t\fR, \fB\-\-tags\fR \fITAGS\fR Only check against rules with the specified tags\. . .TP \fB\-f\fR, \fB\-\-epic\-fail\fR \fITAGS\fR Exit non\-zero if any of the specified tags are matched\. Use the pseudo\-tag \fBany\fR to fail if any tag is matched\. . .TP \fB\-c\fR, \fB\-\-chef\-version\fR \fIVERSION\fR Only check against rules valid for this version of Chef\. . .TP \fB\-B\fR, \fB\-\-cookbook\-path\fR Cookbook path(s) to check\. . .TP \fB\-C\fR, \fB\-\-\fR[\fBno\-\fR]\fBcontext\fR Show lines matched against rather than the default summary\. . .TP \fB\-E\fR, \fB\-\-environment\-path\fR Environment path(s) to check\. . .TP \fB\-I\fR, \fB\-\-include\fR \fIPATH\fR Additional rule file path(s) to load\. . .TP \fB\-R\fR, \fB\-\-role\-path\fR Role path(s) to check\. . .TP \fB\-S\fR, \fB\-\-search\-grammar\fR \fIPATH\fR Specify grammar to use when validating search syntax\. (Default: the grammar of any installed Chef) . .TP \fB\-V\fR, \fB\-\-version\fR Display the foodcritic version\. . .SH "RETURN VALUES" By default, \fBfoodcritic\fR will always return \fB0\fR\. . .P If \fB\-\-epic\-fail\fR is specified, then \fBfoodcritic\fR will return \fB3\fR if any tags are matched\. . .SH "COPYRIGHT" \fBfoodcritic\fR is Copyright 2011 by Andrew Crump\. . .SH "SEE ALSO" chef(1) foodcritic-3.0.3/man/foodcritic.1.ronn0000644000004100000410000000300412263752452017634 0ustar www-datawww-datafoodcritic(1) -- lint tool for chef cookbooks ============================================= ## SYNOPSIS `foodcritic` [...] ... ## DESCRIPTION `foodcritic` makes it easier to flag problems in your Chef cookbooks that will cause Chef to blow up when you attempt to converge. This is about faster feedback. Each `cookbook` path specified will be examined for common problems and poor style. ## OPTIONS * `-t`, `--tags` : Only check against rules with the specified tags. * `-f`, `--epic-fail` : Exit non-zero if any of the specified tags are matched. Use the pseudo-tag `any` to fail if any tag is matched. * `-c`, `--chef-version` : Only check against rules valid for this version of Chef. * `-B`, `--cookbook-path`: Cookbook path(s) to check. * `-C`, `--`[`no-`]`context`: Show lines matched against rather than the default summary. * `-E`, `--environment-path`: Environment path(s) to check. * `-I`, `--include` : Additional rule file path(s) to load. * `-R`, `--role-path`: Role path(s) to check. * `-S`, `--search-grammar` : Specify grammar to use when validating search syntax. (Default: the grammar of any installed Chef) * `-V`, `--version`: Display the foodcritic version. ## RETURN VALUES By default, `foodcritic` will always return `0`. If `--epic-fail` is specified, then `foodcritic` will return `3` if any tags are matched. ## COPYRIGHT `foodcritic` is Copyright 2011 by Andrew Crump. ## SEE ALSO chef(1) foodcritic-3.0.3/LICENSE0000644000004100000410000000206312263752452014710 0ustar www-datawww-dataThe MIT License Copyright (C) 2011 by Andrew Crump Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.foodcritic-3.0.3/CHANGELOG.md0000644000004100000410000011346512263752452015525 0ustar www-datawww-data## 3.0.3 (13th October, 2013) Bugfixes: - [FC051: Template partials loop indefinitely](http://foodcritic.io/#FC051) would cause an error for partials included from a subdirectory or where the partial did not exist ([related issue](https://github.com/acrmp/foodcritic/issues/176)). Thanks @claco, @michaelglass. ## 3.0.2 (5th October, 2013) Bugfixes: - [FC051: Template partials loop indefinitely](http://foodcritic.io/#FC051) can cause foodcritic to exit with an error on encountering a file that cannot be read as UTF-8. We now explicitly exclude `.DS_Store` and `*.swp` as a workaround ([related issue](https://github.com/acrmp/foodcritic/issues/172)). Thanks @tmatilai, @claco. - [FC022: Resource condition within loop may not behave as expected](http://foodcritic.io/#FC022) would warn incorrectly against loops where the block accepts more than one argument ([related issue](https://github.com/acrmp/foodcritic/issues/69)). Thanks @Ips1975, @jaymzh. ## 3.0.1 (25th September, 2013) Other: - Rake version constraint removed to make packaging easier for users who deploy foodcritic alongside Omnibus Chef. ## 3.0.0 (14th September, 2013) Features: - [FC047: Attribute assignment does not specify precedence](http://foodcritic.io/#FC047) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/81)). Thanks @jtimberman, @miketheman. - [FC048: Prefer Mixlib::ShellOut](http://foodcritic.io/#FC048) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/111)). Thanks @jaymzh. - [FC049: Role name does not match containing file name](http://foodcritic.io/#FC049) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/19)). Thanks @jaymzh. - [FC050: Name includes invalid characters](http://foodcritic.io/#FC050) rule added. - [FC051: Template partials loop indefinitely](http://foodcritic.io/#FC051) rule added. - Added support for checking Chef environment and role files ([related issue](https://github.com/acrmp/foodcritic/issues/19)). Thanks @jaymzh. - Added metadata for Chef 11.6.0. - API methods `#field`, `#field_value` and `#templates_included` added. - The API now exposes access to whether individual warnings should be viewed as failures ([related issue](https://github.com/acrmp/foodcritic/issues/150)). Thanks @jamesdburgess. Bugfixes: - [FC007: Ensure recipe dependencies are reflected in cookbook metadata](http://foodcritic.io/#FC007) would warn if specifying dependencies in a multi-line word list with leading whitespace ([related issue](https://github.com/acrmp/foodcritic/issues/160)). Thanks to @philk for identifying and fixing this issue. - [FC007: Ensure recipe dependencies are reflected in cookbook metadata](http://foodcritic.io/#FC007) would not warn if `include_recipe` used parentheses ([related issue](https://github.com/acrmp/foodcritic/issues/155)). Thanks @jamesdburgess. - [FC017: LWRP does not notify when updated](http://foodcritic.io/#FC017) would warn even if `converge_by` or `use_inline_resources` was used ([related issue](https://github.com/acrmp/foodcritic/issues/90)). Thanks @stevendanna, @nevir. - [FC017: LWRP does not notify when updated](http://foodcritic.io/#FC017) would not warn if any action within the provider notified. Updated to report against actions individually ([related issue](https://github.com/acrmp/foodcritic/issues/90)). - [FC019: Access node attributes in a consistent manner](http://foodcritic.io/#FC019) would warn incorrectly against `node.run_state` ([related issue](https://github.com/acrmp/foodcritic/issues/66)). Thanks @jtimberman. - [FC033: Missing template](http://foodcritic.io/#FC033) would warn if the template filename began with a dot ([related issue](https://github.com/acrmp/foodcritic/issues/165)). Thanks @eherot. - [FC034: Unused template variables](http://foodcritic.io/#FC034) would warn incorrectly if variables were used by partials ([related issue](https://github.com/acrmp/foodcritic/issues/140)). Thanks to @v-a for implementing initial support for partials. - [FC034: Unused template variables](http://foodcritic.io/#FC034) would not be shown against inferred templates. - [FC038: Invalid resource action](http://foodcritic.io/#FC038) would warn incorrectly for log resources that specified a `write` action ([related issue](https://github.com/acrmp/foodcritic/issues/154)). Thanks @sethvargo. - The foodcritic gem was missing a dependency on rake which broke thor-foodcritic ([related issue](https://github.com/acrmp/foodcritic/issues/157)). Thanks @douglaswth. - Template warnings should now be shown against the correct line number. Previously warnings were always shown against line 1 ([related issue](https://github.com/acrmp/foodcritic/issues/102)). Thanks @juliandunn. - The `#declared_dependencies` API method could return duplicates for old versions of LibXML. ([related issue](https://github.com/acrmp/foodcritic/issues/163)). Thanks @danleyden. Other: - This release introduces breaking changes to programmatic use of foodcritic. ## 2.2.0 (10th July, 2013) Features: - Additional rules may now be shipped as gems. Files matching the path `foodcritic/rules/**/*.rb` will be loaded if the `--search-gems` option is specified ([related issue](https://github.com/acrmp/foodcritic/issues/143)). Thanks to @rteabeault for implementing this feature. - You can now control the rules applied to individual cookbooks by including a `.foodcritic` file at the root of your cookbook with the tags you want checked ([related issue](https://github.com/acrmp/foodcritic/issues/141)). Thanks to @sabat for implementing this feature. - The [project license](https://github.com/acrmp/foodcritic/blob/master/LICENSE) is now included in the built gem ([related issue](https://github.com/acrmp/foodcritic/issues/145)). Thanks @stefanor. - Foodcritic no longer uses the `rak` gem to generate output with context ([related issue](https://github.com/acrmp/foodcritic/issues/146)). Thanks to @stefanor for re-implementing context output to remove this dependency. - A man page is now included with foodcritic in [ronn-format](http://rtomayko.github.io/ronn/). Thanks @stefanor. Bugfixes: - Definitions are now included in the files that are linted ([related issue](https://github.com/acrmp/foodcritic/issues/142)). Thanks @bpaquet. - [FC009: Resource attribute not recognised](http://acrmp.github.com/foodcritic/#FC009) would warn against Windows-specific resource attributes ([related issue](https://github.com/acrmp/foodcritic/issues/135)). Thanks @stormtrooperguy. - [FC011: Missing README in markdown format](http://acrmp.github.com/foodcritic/#FC011) was not shown when outputting with context enabled ([related issue](https://github.com/acrmp/foodcritic/issues/146)). Thanks @stefanor. - [FC014: Consider extracting long ruby_block to library](http://acrmp.github.com/foodcritic/#FC014) previously used the number of AST nodes to determine block length. This was a poor proxy for length and this rule has been updated to warn if the number of lines > 15 ([related issue](https://github.com/acrmp/foodcritic/issues/130)). Thanks @adamjk-dev. - [FC014: Consider extracting long ruby_block to library](http://acrmp.github.com/foodcritic/#FC014) would warn against other blocks incorrectly ([related issue](https://github.com/acrmp/foodcritic/issues/130)). Thanks @adamjk-dev. - [FC014: Consider extracting long ruby_block to library](http://acrmp.github.com/foodcritic/#FC014) would raise an error if the ruby_block did not contain a nested `block` attribute ([related issue](https://github.com/acrmp/foodcritic/issues/139)). Thanks @stevendanna. - [FC033: Missing template](http://acrmp.github.com/foodcritic/#FC033) would warn when the template file did not have an erb extension ([related issue](https://github.com/acrmp/foodcritic/issues/131)). Thanks @nvwls. - [FC034: Unused template variables](http://acrmp.github.com/foodcritic/#FC034) would warn when the template file did not have an erb extension ([related issue](https://github.com/acrmp/foodcritic/issues/131)). Thanks @nvwls. ## 2.1.0 (17th April, 2013) Features: - DSL metadata will now reflect the version of Chef selected with `--chef-version`. For example this means that [FC009: Resource attribute not recognised](http://acrmp.github.com/foodcritic/#FC009) will warn about attributes not present in the specified version of Chef. Bugfixes: - [FC045: Consider setting cookbook name in metadata](http://acrmp.github.com/foodcritic/#FC045) would warn incorrectly and other rules would fail to work when activesupport had been loaded ([related issue](https://github.com/acrmp/foodcritic/issues/118)). This affected Berkshelf users. Thanks @scalp42 and @c-nolic. - Upgrade the version of Gherkin dependency to avoid deprecation warnings ([related issue](https://github.com/acrmp/foodcritic/pull/122)). Thanks @tmatilai. Other: - Known to run on MRI 2.0.0 - added to Travis CI matrix. ## 2.0.1 (31st March, 2013) Bugfixes: - Matches that should be ignored were not if the rule implementation used the `cookbook` block ([related issue](https://github.com/acrmp/foodcritic/issues/119)). - [FC033: Missing Template](http://acrmp.github.com/foodcritic/#FC033) would warn incorrectly when the template resource was nested within another resource ([related issue](https://github.com/acrmp/foodcritic/issues/96)). Thanks @justinforce. - The `#resource_attributes` API method now copes with nested resources. ## 2.0.0 (24th March, 2013) Features - Support added for ignoring individual matches. To ignore a match add a comment to the affected line in your cookbook of the format `# ~FC006` ([related issue](https://github.com/acrmp/foodcritic/issues/119)). Big thanks to @grosser. - Command line help now specifies the tag to use to fail the build on any rule match ([related issue](https://github.com/acrmp/foodcritic/issues/108)). Thanks @grosser. - FC046: Attribute assignment uses assign unless nil rule added ([related issue](https://github.com/acrmp/foodcritic/issues/52)). Thanks @jaymzh. Bugfixes: - [FC003: Check whether you are running with chef server before using server-specific features](http://acrmp.github.com/foodcritic/#FC003) updated to recognise checks that use return ([related issue](https://github.com/acrmp/foodcritic/issues/92)). Thanks @sethvargo, @miketheman. - [FC003: Check whether you are running with chef server before using server-specific features](http://acrmp.github.com/foodcritic/#FC003) updated to recognise checks that test for Chef Solo with alternation ([related issue](https://github.com/acrmp/foodcritic/issues/103)). Thanks @promisedlandt. - [FC017: LWRP does not notify when updated](http://acrmp.github.com/foodcritic/#FC017) modified to no longer warn when a notification is made without parentheses ([related issue](https://github.com/acrmp/foodcritic/issues/121)). Thanks @justinforce. - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) would previously only show warnings for the first matching file. - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) updated to avoid showing a false positive where a search is passed an argument based on a node attribute accessed with a string. - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) updated to exclude specs, removing a source of false positives. - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) fixed regression in var_ref handling. - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) updated to not trigger on quoted symbols ([related issue](https://github.com/acrmp/foodcritic/issues/88)). Thanks @spheromak. - [FC024: Consider adding platform equivalents](http://acrmp.github.com/foodcritic/#FC024) updated to only warn about platform equivalents that are listed in the cookbook metadata ([related issue](https://github.com/acrmp/foodcritic/issues/59)). Thanks @tknerr. - [FC037: Invalid notification action](http://acrmp.github.com/foodcritic/#FC037) would cause foodcritic to halt with an error when a notification action was specified as an expression ([related issue](https://github.com/acrmp/foodcritic/issues/104)). Thanks @jaymzh. - [FC040: Execute resource used to run git commands](http://acrmp.github.com/foodcritic/#FC040) updated to not match if the git command cannot be expressed as a `git` resource. ([related issue](https://github.com/acrmp/foodcritic/pull/98)). Thanks @trobrock for raising this issue and implementing the fix. - [FC043: Prefer new notification syntax](http://acrmp.github.com/foodcritic/#FC043) updated to apply only to Chef versions >= 0.9.10 ([related issue](https://github.com/acrmp/foodcritic/issues/114)). Thanks @iainbeeston. - [FC044: Avoid bare attribute keys](http://acrmp.github.com/foodcritic/#FC044) changed to not raise false positives against block variables ([related issue](https://github.com/acrmp/foodcritic/issues/105)). Thanks @jaymzh. Other: - The `--repl` command line flag has been removed. This feature little used and was problematic for users attempting to use newer versions of pry or guard ([related issue](https://github.com/acrmp/foodcritic/issues/50)). Thanks @jperry, @miketheman, @jtimberman. - The `os_command?` api method has been removed. - The deprecated `cookbook_path` and `valid_path?` methods have been removed. This may cause breakage if you are using foodcritic programatically from Ruby. Please update your code to use the `cookbook_paths` and `valid_paths?` methods instead. - Added regression test for expected output against opscode-cookbooks. Run `bundle exec rake regressions` to perform this test. ## 1.7.0 (27th December, 2012) Features - [FC038: Invalid resource action](http://acrmp.github.com/foodcritic/#FC038) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/61)). Thanks @jaymzh. - [FC039: Node method cannot be accessed with key](http://acrmp.github.com/foodcritic/#FC039) rule added. - [FC040: Execute resource used to run git commands](http://acrmp.github.com/foodcritic/#FC040) rule stolen from Etsy rules (ETSY003) ([related issue](https://github.com/acrmp/foodcritic/issues/72)). Thanks @jonlives. - [FC041: Execute resource used to run curl or wget commands](http://acrmp.github.com/foodcritic/#FC041) rule stolen from Etsy rules (ETSY002) ([related issue](https://github.com/acrmp/foodcritic/issues/73)). Thanks @jonlives. - [FC042: Prefer include_recipe](http://acrmp.github.com/foodcritic/#FC042) rule added ([related issue](https://github.com/acrmp/foodcritic/pull/77)). Thanks @pwelch. - [FC043: Prefer new notification syntax](http://acrmp.github.com/foodcritic/#FC043) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/80)). Thanks @jtimberman. - [FC044: Avoid bare attribute keys](http://acrmp.github.com/foodcritic/#FC044) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/75)). Thanks @jtimberman. - [FC045: Consider setting cookbook name in metadata](http://acrmp.github.com/foodcritic/#FC045) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/64)). Thanks @miketheman. - Linter `#check` method no longer requires options to be explicitly passed if you are using the defaults ([related issue](https://github.com/acrmp/foodcritic/pull/71)). Thanks @kreynolds. Bugfixes: - Bump version of Nokogiri to [fix installation failure on Ubuntu 12.10](https://github.com/sparklemotion/nokogiri/issues/680) ([related issue](https://github.com/acrmp/foodcritic/issues/83)). Thanks @dracoater. - Support added for quoted symbols as notification actions ([related issue](https://github.com/acrmp/foodcritic/pull/94)). Thanks @ohm. - Add `spec/**/*` and `features/**/*` to default rake task `:exclude_paths` ([related issue](https://github.com/acrmp/foodcritic/pull/84)). Thanks @fnichol. - Remove unnecessary whitespace from rake task output ([related issue](https://github.com/acrmp/foodcritic/pull/78)). Thanks @ketan. - Removed [FC001: Use strings in preference to symbols to access node attributes](http://acrmp.github.com/foodcritic/#FC001) ([related issue](https://github.com/acrmp/foodcritic/issues/86)). Thanks @jtimberman. - [FC003: Check whether you are running with chef server before using server-specific features](http://acrmp.github.com/foodcritic/#FC003) updated to also match `unless` ([related issue](https://github.com/acrmp/foodcritic/issues/58)). Thanks @cap10morgan. - Decode numeric attributes. This could cause [FC005: Avoid repetition of resource declarations](http://acrmp.github.com/foodcritic/#FC005) to warn incorrectly ([related issue](https://github.com/acrmp/foodcritic/issues/79)). Thanks @masterkorp. - Recognise attributes correctly within a block. This could cause [FC005: Avoid repetition of resource declarations](http://acrmp.github.com/foodcritic/#FC005) to warn incorrectly ([related issue](https://github.com/acrmp/foodcritic/issues/76)). Thanks @masterkorp. - [FC009: Resource attribute not recognised](http://acrmp.github.com/foodcritic/#FC009) would warn incorrectly on methods used within a resource block ([related issue](https://github.com/acrmp/foodcritic/issues/85)). Thanks @arangamani. - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) would warn incorrectly when referencing node attributes from a user-created hash. ([related issue](https://github.com/acrmp/foodcritic/issues/54)). Thanks @schubert. - [FC033: Missing Template](http://acrmp.github.com/foodcritic/#FC033) would warn incorrectly when using templates from another cookbook ([related issue](https://github.com/acrmp/foodcritic/issues/74)). Thanks @woohgit. ## 1.6.1 (31st August, 2012) Bugfixes: - [FC030: Cookbook contains debugger breakpoints](http://acrmp.github.com/foodcritic/#FC030) could prevent other rules from processing depending on the tags passed. - [FC037: Invalid notification action](http://acrmp.github.com/foodcritic/#FC037) would incorrectly warn against `subscribes` notifications ([related issue](https://github.com/acrmp/foodcritic/issues/65)). Thanks @jtimberman. ## 1.6.0 (28th August, 2012) Bugfixes: - Removed FC035: Template uses node attribute directly. For a discussion of the reasons for removal see the [related issue](https://github.com/acrmp/foodcritic/issues/60). ## 1.5.1 (21st August, 2012) Bugfixes: - Remove pry-doc dependency to resolve pry version conflict. ## 1.5.0 (21st August, 2012) Features: - [FC033: Missing template](http://acrmp.github.com/foodcritic/#FC033) rule added. - [FC034: Unused template variables](http://acrmp.github.com/foodcritic/#FC034) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/36)). - [FC035: Template uses node attribute directly](http://acrmp.github.com/foodcritic/#FC035) rule added. This is a style rule that may prove controversial. - [FC037: Invalid notification action](http://acrmp.github.com/foodcritic/#FC037) rule added. - The `#read_ast` API method now supports Erb templates. - API method `#resource_action?` added. - DSL extended to include `library`, `metadata` and `template`. Bugfixes: - [FC020: Conditional execution string attribute looks like Ruby](http://acrmp.github.com/foodcritic/#FC033) rule has been removed as unreliable. - The `#attribute_access` API method now correctly allows a type of `:any`. - The `#notifications` API method now supports notifications enclosed in braces ([related issue](https://github.com/etsy/foodcritic-rules/issues/3)). - Ensure command-line help is shown when an invalid option is passed. Thanks to @juanje for finding and fixing this issue. ## 1.4.0 (15th June, 2012) Features: - [FC027: Resource sets internal attribute](http://acrmp.github.com/foodcritic/#FC027) rule added. Thanks @macros. - [FC028: Incorrect #platform? usage](http://acrmp.github.com/foodcritic/#FC028) rule added. - [FC029: No leading cookbook name in recipe metadata](http://acrmp.github.com/foodcritic/#FC029) rule added. - [FC030: Cookbook contains debugger breakpoints](http://acrmp.github.com/foodcritic/#FC030) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/36)). Thanks @bryanwb. - [FC031: Cookbook without metadata file](http://acrmp.github.com/foodcritic/#FC031) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/43)). Thanks to @juanje for proposing and implementing this rule. - [FC032: Invalid notification timing](http://acrmp.github.com/foodcritic/#FC032) rule added. - Added the [notifications](http://acrmp.github.com/foodcritic/#notifications) API method to provide more convenient access to resource notifications ([related issue](https://github.com/acrmp/foodcritic/issues/31)). Bugfixes: - [FC003: Check whether you are running with chef server before using server-specific features](http://acrmp.github.com/foodcritic/#FC003) would warn if solo was checked for with `Chef::Config.solo` ([related issue](https://github.com/acrmp/foodcritic/issues/26)). Thanks to @miketheman for identifying and fixing this issue. - [FC007: Ensure recipe dependencies are reflected in cookbook metadata](http://acrmp.github.com/foodcritic/#FC007) would incorrectly warn if the cookbook name specified for `include_recipe` was dynamic ([related issue](https://github.com/acrmp/foodcritic/issues/44)). Thanks @markjreed. - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) has been modified to no longer warn if the method called on node is called explicitly with brackets ([related issue](https://github.com/acrmp/foodcritic/issues/22)). Thanks @jaymzh. - The [resource_attributes](http://acrmp.github.com/foodcritic/#resource_attributes) API method has been updated to return boolean values correctly. ## 1.3.1 (9th June, 2012) Bugfixes: - Changes made to support multiple cookbook paths in 1.3.0 broke compatibility with earlier versions of the linting API. This release restores compatibility with third party code that uses the linter `#cookbook_path` or `#valid_path?` methods. - The Nokogiri dependency constraint has been locked to 1.5.0 again as Nokogiri 1.5.3 also appears to segfault in certain circumstances. ## 1.3.0 (21st May, 2012) Features: - [FC026: Conditional execution block attribute contains only string](http://acrmp.github.com/foodcritic/#FC026) rule added ([related issue](https://github.com/acrmp/foodcritic/issues/30)). Thanks to @mkocher for proposing this rule. - Foodcritic now accepts multiple cookbook paths as arguments and supports linting of individual files only. Big thanks to @cgriego for these changes. These lay the groundwork for his new [guard-foodcritic](https://github.com/cgriego/guard-foodcritic) project. Bugfixes: - [FC003: Check whether you are running with chef server before using server-specific features](http://acrmp.github.com/foodcritic/#FC003) would still warn if solo was checked for as a string ([related issue](https://github.com/acrmp/foodcritic/issues/26)). Thanks to @miketheman for identifying and fixing this issue. - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) would warn when the node object had been re-opened for extension ([related issue](https://github.com/acrmp/foodcritic/issues/22)). Thanks @jaymzh. - [FC020: Conditional execution string attribute looks like Ruby](http://acrmp.github.com/foodcritic/#FC020) updated to not warn against strings that appear to contain file paths or Windows `net use` ([related issue](https://github.com/acrmp/foodcritic/issues/30)). Thanks @eherot and @mconigliaro. - [FC022: Resource condition within loop may not behave as expected](http://acrmp.github.com/foodcritic/#FC022) would warn incorrectly if the resource name was set directly to the block variable rather than being a string expression ([related issue](https://github.com/acrmp/foodcritic/issues/29)). Thanks @eherot. - The [resource_attributes](http://acrmp.github.com/foodcritic/#resource_attributes) API method has been updated to return the AST for resource notifications ([related issue](https://github.com/acrmp/foodcritic/issues/31)). Thanks @jonlives. Other: - [Etsy have open-sourced their Foodcritic rules](https://github.com/etsy/foodcritic-rules). You should definitely check these out. - The effective Chef version for determining the rules to apply has been bumped to 0.10.10. ## 1.2.0 (21st April, 2012) Features: - [FC025: Prefer chef_gem to compile-time gem install](http://acrmp.github.com/foodcritic/#FC025) rule added. - Rules can now declare which versions of Chef they `apply_to`. The new command line argument `-c` (`--chef-version`) should be used to specify the effective Chef version. Bugfixes: - [FC001: Use strings in preference to symbols to access node attributes](http://acrmp.github.com/foodcritic/#FC001) could show false positives when using Chef search. - [FC001: Use strings in preference to symbols to access node attributes](http://acrmp.github.com/foodcritic/#FC001) would overlook the use of symbols to access node attributes when passing template variables. - [FC002: Avoid string interpolation where not required](http://acrmp.github.com/foodcritic/#FC002) fixed to no longer ignore the first keypair in a Hash ([related issue](https://github.com/acrmp/foodcritic/issues/24)). Thanks @Ips1975. - [FC004: Use a service resource to start and stop services](http://acrmp.github.com/foodcritic/#FC004) modified not to warn if the action is not supported by the `service` resource. - [FC005: Avoid repetition of resource declarations](http://acrmp.github.com/foodcritic/#FC005) modified not to warn when resources are branched within conditionals or provider actions. - [FC007: Ensure recipe dependencies are reflected in cookbook metadata](http://acrmp.github.com/foodcritic/#FC007) modified to ignore the use of `include_recipe` with embedded expressions. - [FC023: Prefer conditional attributes](http://acrmp.github.com/foodcritic/#FC023) modified not to warn if the conditional expression has an `else`. - The `resource_attributes` API method has been updated to return block attributes which were previously ignored ([related issue](https://github.com/acrmp/foodcritic/issues/23)). Thanks @jonlives. ## 1.1.0 (25th March, 2012) Features: - [FC024: Consider adding platform equivalents](http://acrmp.github.com/foodcritic/#FC024) rule added. - When writing new rules it is no longer necessary to explicitly map matching AST nodes to matches. You can now just return the AST nodes. Bugfixes: - The `cookbook_name` method now reflects the cookbook name if specified in metadata. This prevents a warning from being shown by [FC007: Ensure recipe dependencies are reflected in cookbook metadata](http://acrmp.github.com/foodcritic/#FC007) if the cookbook is in a differently named directory. - The `declared_dependencies` method previously would intermix version strings in the list of cookbook names. Other: - Chef 0.10.10 will include a new DSL method for defining a `default_action` for resources. Rule [FC016: LWRP does not declare a default action](http://acrmp.github.com/foodcritic/#FC016) has been updated to recognise the DSL change. - Nokogiri dependency constraint changed to no longer lock to 1.5.0 as their next release should include the fix for custom XPath functions. ## 1.0.1 (15th March, 2012) Bugfixes: - Nokogiri 1.5.1 and 1.5.2 cause a segfault so prevent their use until a fix is released ([related issue](https://github.com/acrmp/foodcritic/issues/18)). Thanks @miah. ## 1.0.0 (4th March, 2012) Features: - New `-I` option added to specify the path to your own custom rules ([related issue](https://github.com/acrmp/foodcritic/issues/8)). - The [Rule API](https://github.com/acrmp/foodcritic/blob/v1.0.0/lib/foodcritic/api.rb) was previously not supported and subject to change without warning. From this release it will now follow the [same versioning policy](http://docs.rubygems.org/read/chapter/7) as the command line interface. - A version flag (--version or -V) has been added ([related issue](https://github.com/acrmp/foodcritic/issues/16)). Bugfixes: - The evaluation of rule tags has been updated to be consistent with Cucumber. The major version number of foodcritic has been bumped to indicate that this is a breaking change. If you make use of tags (for example in a CI build) you may need to update your syntax. See the [related issue](https://github.com/acrmp/foodcritic/issues/11) for more information. Thanks @jaymzh. - [FC003: Check whether you are running with chef server before using server-specific features](http://acrmp.github.com/foodcritic/#FC003) has been updated to correctly identify the new version of chef-solo-search ([related issue](https://github.com/acrmp/foodcritic/issues/17)). ## 0.11.1 (29th February, 2012) Bugfixes: - Foodcritic could fail to activate yajl-json in some circumstances, failing with a runtime error. Whether this occurred was dependent on the version of yajl-ruby activated by Chef, which would vary dependent on the other gems installed on the system. See the [related issue](https://github.com/acrmp/foodcritic/issues/14) for more information. Thanks @jaymzh for identifying the issue and striving to get Foodcritic playing well with Omnibus. ## 0.11.0 (22nd February, 2012) Bugfixes: - Major bugfix to [FC006: Mode should be quoted or fully specified when setting file permissions](http://acrmp.github.com/foodcritic/#FC006). In earlier versions a four-digit literal file mode that set the first octet would not have been picked up by this rule ([related issue](https://github.com/acrmp/foodcritic/pull/9)). Thanks @aia for finding and fixing this bug. Check your cookbooks against FC006 after upgrading to see if you are affected. ## 0.10.0 (20th February, 2012) Features: - Performance improvements. - [FC023: Prefer conditional attributes](http://acrmp.github.com/foodcritic/#FC023) rule added. Stolen from @ampledata with thanks. - New `-S` option added to allow an alternate search grammar to be specified. Other: - Chef is no longer loaded at startup for performance reasons. Foodcritic now ships with Chef DSL metadata. ## 0.9.0 (26th January, 2012) Features: - New experimental `-C` option added to output context for rule matches. - [FC021: Resource condition in provider may not behave as expected](http://acrmp.github.com/foodcritic/#FC021) rule added. - [FC022: Resource condition within loop may not behave as expected](http://acrmp.github.com/foodcritic/#FC022) rule added. Bugfixes: - [FC005: Avoid repetition of resource declarations](http://acrmp.github.com/foodcritic/#FC005) rule modified to only warn when there are at least three *consecutive* resources of the same type that could be 'rolled up' into a loop. - [FC016: LWRP does not declare a default action](http://acrmp.github.com/foodcritic/#FC016) rule restored. Thanks @stevendanna - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) rule modified to no longer treat DSL mixin methods as auto-vivified attributes. Identification of least used access method should now be accurate. Other: - [FC020: Conditional execution string attribute looks like Ruby](http://acrmp.github.com/foodcritic/#FC020) rule now grabs conditions from within single quotes. ## 0.8.1 (20th January, 2012) Bugfixes: - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) modified to avoid false positives on methods invoked on values in a Mash. ## 0.8.0 (19th January, 2012) Features: - [FC019: Access node attributes in a consistent manner](http://acrmp.github.com/foodcritic/#FC019) rule added. - [FC020: Conditional execution string attribute looks like Ruby](http://acrmp.github.com/foodcritic/#FC020) rule added. Other: - Rule 'FC016: LWRP does not declare a default action' was incorrectly checking the provider for a default action rather than the resource. Removed this rule temporarily to avoid showing false positives. A user has patched this and will be submitting a pull request shortly. ## 0.7.0 (31st December, 2011) Features: - New `-f` option added to allow you to specify which warnings should result in the build being failed. See the new documentation on [using Foodcritic in Continuous Integration](http://acrmp.github.com/foodcritic/#ci) for more information. - New `-r` option added to drop you into the Pry REPL to interactively develop rules. See the updated documentation on [Writing a new rule](http://acrmp.github.com/foodcritic/#writing-a-new-rule) for more information. Bugfixes: - [FC003: Check whether you are running with chef server before using server-specific features](http://acrmp.github.com/foodcritic/#FC003) rule modified to not warn if the [edelight chef-solo-search library](https://github.com/edelight/chef-solo-search) has been installed. Thanks @tobami. - [FC007: Ensure recipe dependencies are reflected in cookbook metadata](http://acrmp.github.com/foodcritic/#FC007) rule modified to flag undeclared dependencies against the offending file rather than metadata.rb. - Removed the unused description field from the rule dsl. Other: - Project features now run much faster, running in-process by default. You can set an environment variable (`FC_FORK_PROCESS`) to specify that Cucumber runs should match the earlier behaviour and spawn a separate process using Aruba. ## 0.6.0 (18th December, 2011) Features: - [FC001: Use strings in preference to symbols to access node attributes](http://acrmp.github.com/foodcritic/#FC001) rule added. - [FC004: Use a service resource to start and stop services](http://acrmp.github.com/foodcritic/#FC004) rule extended to recognise upstart and invoke-rc.d. - [FC011: Missing README in markdown format](http://acrmp.github.com/foodcritic/#FC011) rule added. - [FC012: Use Markdown for README rather than RDoc](http://acrmp.github.com/foodcritic/#FC012) rule added. - [FC013: Use file_cache_path rather than hard-coding tmp paths ](http://acrmp.github.com/foodcritic/#FC013) rule added. - [FC014: Consider extracting long ruby_block to library](http://acrmp.github.com/foodcritic/#FC014) rule added. - [FC015: Consider converting definition to a LWRP](http://acrmp.github.com/foodcritic/#FC015) rule added. - [FC016: LWRP does not declare a default action](http://acrmp.github.com/foodcritic/#FC016) rule added. - [FC017: LWRP does not notify when updated](http://acrmp.github.com/foodcritic/#FC017) rule added. - [FC018: LWRP uses deprecated notification syntax](http://acrmp.github.com/foodcritic/#FC018) rule added. Bugfixes: - Ensure warnings are line sorted numerically. Commit eb1762fd0fbf99fa513783d7838ceac0147c37bc - [FC005: Avoid repetition of resource declarations](http://acrmp.github.com/foodcritic/#FC005) rule made less aggressive. ## 0.5.2 (15th December, 2011) Bugfixes: - Fix JSON version range for compatibility with Bundler / Chef 0.10.6. ([related issue](https://github.com/acrmp/foodcritic/issues/6)). Thanks @dysinger. ## 0.5.1 (14th December, 2011) Features: - Relaxed Ruby version constraint so we can run on 1.9.2 ([related issue](https://github.com/acrmp/foodcritic/issues/5)). Yay. Thanks @someara. ## 0.5.0 (13th December, 2011) Features: - Added the ability to choose rules to apply via tags ([related issue](https://github.com/acrmp/foodcritic/issues/4)). This uses the same syntax as [Cucumber tag expressions](https://github.com/cucumber/cucumber/wiki/tags). - [FC010: Invalid search syntax](http://acrmp.github.com/foodcritic/#FC010) rule added. ## 0.4.0 (10th December, 2011) Features: - [Spiffy new home page and documentation](http://acrmp.github.com/foodcritic/) - [FC008: Generated cookbook metadata needs updating](http://acrmp.github.com/foodcritic/#FC008) rule added. - [FC009: Resource attribute not recognised rule added](http://acrmp.github.com/foodcritic/#FC009). This adds a dependency on the Chef gem. - Performance improvement. Bugfixes: - Fixed typo in FC004 feature description ([related issue](https://github.com/acrmp/foodcritic/issues/2)). Thanks @smith. - Prevented statements within nested resource blocks from being interpreted as resource attributes. ## 0.3.0 (4th December, 2011) Features: - Significantly slower! But now you can write rules using [xpath or css selectors](http://nokogiri.org/). - FC006: File mode rule added. - FC007: Undeclared recipe dependencies rule added. ## 0.2.0 (1st December, 2011) Bugfixes: - Removed 'FC001: Use symbols in preference to strings to access node attributes' until a policy mechanism is introduced ([related issue](https://github.com/acrmp/foodcritic/issues/1)). Thanks @jtimberman ## 0.1.0 (30th November, 2011) Initial version. foodcritic-3.0.3/checksums.yaml.gz0000444000004100000410000000065212263752452017173 0ustar www-datawww-data‹ãéYR…’ÁŠÛ0†ïy wï)Ž_|ˆ‘l²0#d‹Ñ-›”زÔÈ#úðdÛC¡°7¤oæûgÖëõêÛûôóøqÏ^ú|¬¡«ª—×U–Å×ãùx=~¿¤×ìï“_k¾É2ôýÍÙýä0b¢ÅùKNfœ±¥S—H¸Ò®@¯’3j‹=\ªŠ??‘×ãÇÿ°Œ¼‘‚nqDñæ)ª¤åiãL˜ÁÏ…6´`T(œT%ØþîvŒýǺm ùfÖ¦žÑîdZ ä÷¥3u¤Øåh;.5³MŸcë&ô!<¬žJkÛL((£~èû·ÒeqmwG?Fð •T@¦ž@²Ÿ?;°À¹¨ä, º@b˜)bжÛb:- úe=ê–EM.ª¯òS]Ñp•nëâ~qr·ÁÔŒÐU¢ì -YH6,sÚ"‡pöæ ·'„ë‘¡›nû½ÁÐÆyZÀ\6”œ‡D%‰=÷ ‚‹ËfþLŪ­“瀼dûܵÖ§ya’ið`ý®D¼8T­~„í´™„foodcritic-3.0.3/README.md0000644000004100000410000000170412263752452015163 0ustar www-datawww-data# Food Critic Food Critic is a lint tool for Chef cookbooks. It requires Ruby 1.9.2+. # Homepage [http://acrmp.github.com/foodcritic/](http://acrmp.github.com/foodcritic/) # Building $ bundle install $ bundle exec rake # Continuous Integration [Food Critic on Travis CI](http://travis-ci.org/acrmp/foodcritic) ![Built on Travis](https://secure.travis-ci.org/acrmp/foodcritic.png?branch=master) # License MIT - see the accompanying [LICENSE](https://github.com/acrmp/foodcritic/blob/master/LICENSE) file for details. # Changelog To see what has changed in recent versions see the [CHANGELOG](https://github.com/acrmp/foodcritic/blob/master/CHANGELOG.md). Food Critic follows the [Rubygems RationalVersioningPolicy](http://docs.rubygems.org/read/chapter/7). # Contributing Additional [rules](http://acrmp.github.com/foodcritic/#writing-a-new-rule) and bugfixes are welcome! Please fork and submit a pull request on an individual branch per change. foodcritic-3.0.3/chef_dsl_metadata/0000755000004100000410000000000012263752452017311 5ustar www-datawww-datafoodcritic-3.0.3/chef_dsl_metadata/chef_0.10.0.json0000644000004100000410000042647212263752452021724 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value", "value_for_platform", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "append", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "value_for_platform", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "priority", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "arch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.9.8.json0000644000004100000410000040602112263752452021650 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "private_methods", "process_external_attrs", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_list", "recipe_list=", "recipes", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "process_external_attrs", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_list", "recipe_list=", "recipes", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "": null, "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "package": [ "install", "nothing", "purge", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "home", "hour", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "make_module", "meta_class", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "": null, "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delim", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value", "value_for_platform", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gem_binary", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reference", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "append", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group_name", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "members", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "users", "validate", "value_for_platform", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "message", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "bcast", "blank?", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "hwaddr", "ignore_failure", "in?", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "mask", "meta_class", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "onboot", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "raid_device", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gateway", "gem", "hash", "hostname", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "priority", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reload_command", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "status_command", "stop_command", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group", "hash", "home", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "manage_home", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "arch", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_10.16.2.json0000644000004100000410000051733012263752452022007 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.10.6.json0000644000004100000410000044065712263752452021733 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value", "value_for_platform", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "allowed_actions", "allowed_actions=", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "append", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "value_for_platform", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "priority", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.9.6.json0000644000004100000410000040563312263752452021656 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "prepare_for_run", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_list", "recipe_list=", "recipes", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "prepare_for_run", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_list", "recipe_list=", "recipes", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "": null, "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "package": [ "install", "nothing", "purge", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "home", "hour", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "make_module", "meta_class", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "": null, "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delim", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value", "value_for_platform", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gem_binary", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reference", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "append", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group_name", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "members", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "users", "validate", "value_for_platform", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "message", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "bcast", "blank?", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "hwaddr", "ignore_failure", "in?", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "mask", "meta_class", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "onboot", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "raid_device", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gateway", "gem", "hash", "hostname", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reload_command", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "status_command", "stop_command", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group", "hash", "home", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "manage_home", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.9.2.json0000644000004100000410000040346612263752452021654 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "prepare_for_run", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_list", "recipe_list=", "recipes", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "prepare_for_run", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_list", "recipe_list=", "recipes", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "": null, "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "package": [ "install", "nothing", "purge", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "home", "hour", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "make_module", "meta_class", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delim", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value", "value_for_platform", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gem_binary", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reference", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "append", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group_name", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "members", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "users", "validate", "value_for_platform", "y" ], "": null, "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "message", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "bcast", "blank?", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "hwaddr", "ignore_failure", "in?", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "mask", "meta_class", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "onboot", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "raid_device", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gateway", "gem", "hash", "hostname", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reload_command", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "status_command", "stop_command", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group", "hash", "home", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "manage_home", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_11.6.0.json0000644000004100000410000061624712263752452021734 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "for_json", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "lazy", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "for_json", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "lazy", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "batch": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "powershell_script": [ "nothing", "run" ], "python": [ "nothing", "run" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "batch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_i386_windows_process?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "wow64_architecture_override_required?", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "level", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "domain", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "y" ], "powershell_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_i386_windows_process?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "wow64_architecture_override_required?", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "values", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "ftp_active_mode", "gem", "group", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "use_conditional_get", "use_etag", "use_etags", "use_last_modified", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "init_command", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "atomic_update", "backup", "checksum", "checksum=", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "force_unlink", "freeze", "frozen?", "gem", "group", "hash", "helper", "helper_modules", "helpers", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inline_helper_blocks", "inline_helper_modules", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "local", "manage_symlink_source", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "y" ], "windows_script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "assert_valid_windows_architecture!", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "disable_wow64_file_redirection", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "is_i386_windows_process?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node_supports_windows_architecture?", "node_windows_architecture", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restore_wow64_file_redirection", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "valid_windows_architecture?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "wow64_architecture_override_required?", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "lazy", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "pretty_inspect", "pretty_print", "pretty_print_cycle", "pretty_print_inspect", "pretty_print_instance_variables", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "validate_resource_spec!", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.8.16.json0000644000004100000410000036072012263752452021733 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "consume_attributes", "convert_to_class_name", "convert_to_snake_case", "cookbook_loader", "cookbook_loader=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "object_id", "override_attrs", "override_attrs=", "platform?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe?", "recipe_list", "recipe_list=", "recipes", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "consume_attributes", "convert_to_class_name", "convert_to_snake_case", "cookbook_loader", "cookbook_loader=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "object_id", "override_attrs", "override_attrs=", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe?", "recipe_list", "recipe_list=", "recipes", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "package": [ "install", "nothing", "purge", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "collection", "collection=", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "home", "hour", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "make_module", "meta_class", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "collection", "collection=", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "collection", "collection=", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gem_binary", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "branch", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reference", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "append", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group_name", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "members", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "users", "validate", "value_for_platform", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "message", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "bcast", "blank?", "bootproto", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "hwaddr", "ignore_failure", "in?", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "mask", "meta_class", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "onboot", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "chunk", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "raid_device", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "collection", "collection=", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "collection", "collection=", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "collection", "collection=", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gateway", "gem", "hash", "hostname", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "route_type", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "collection", "collection=", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "block", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "collection", "collection=", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reload_command", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "run_action", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "start_command", "startup_type", "status_command", "stop_command", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "collection", "collection=", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group", "hash", "home", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_10.16.0.json0000644000004100000410000051733012263752452022005 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_10.22.0.json0000644000004100000410000051735112263752452022005 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.10.4.json0000644000004100000410000043610612263752452021723 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value", "value_for_platform", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "allowed_actions", "allowed_actions=", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "append", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "value_for_platform", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "priority", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_11.4.4.json0000644000004100000410000054221112263752452021723 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "for_json", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "for_json", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "values", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "init_command", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.9.14.json0000644000004100000410000044464512263752452021743 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe?", "recipe_list", "recipe_list=", "recipes", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe?", "recipe_list", "recipe_list=", "recipes", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "": null, "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "home", "hour", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "make_module", "meta_class", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "": null, "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value", "value_for_platform", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gem_binary", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reference", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "append", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group_name", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "members", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "value_for_platform", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "headers", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "message", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "bcast", "blank?", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "hwaddr", "ignore_failure", "immediate_notifications", "in?", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "mask", "meta_class", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gateway", "gem", "hash", "hostname", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "priority", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group", "hash", "home", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "manage_home", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "arch", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_11.4.0.json0000644000004100000410000054221112263752452021717 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "for_json", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "for_json", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "values", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "init_command", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.8.14.json0000644000004100000410000036072012263752452021731 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "consume_attributes", "convert_to_class_name", "convert_to_snake_case", "cookbook_loader", "cookbook_loader=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "object_id", "override_attrs", "override_attrs=", "platform?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe?", "recipe_list", "recipe_list=", "recipes", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "consume_attributes", "convert_to_class_name", "convert_to_snake_case", "cookbook_loader", "cookbook_loader=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "object_id", "override_attrs", "override_attrs=", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe?", "recipe_list", "recipe_list=", "recipes", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "package": [ "install", "nothing", "purge", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "collection", "collection=", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "home", "hour", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "make_module", "meta_class", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "collection", "collection=", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "collection", "collection=", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gem_binary", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "branch", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reference", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "append", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group_name", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "members", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "users", "validate", "value_for_platform", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "message", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "bcast", "blank?", "bootproto", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "hwaddr", "ignore_failure", "in?", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "mask", "meta_class", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "onboot", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "chunk", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "raid_device", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "collection", "collection=", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "collection", "collection=", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "collection", "collection=", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gateway", "gem", "hash", "hostname", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "route_type", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "collection", "collection=", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "block", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "collection", "collection=", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reload_command", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "run_action", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "start_command", "startup_type", "status_command", "stop_command", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "collection", "collection=", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group", "hash", "home", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "actions", "actions=", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "collection", "collection=", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.9.18.json0000644000004100000410000044464512263752452021747 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe?", "recipe_list", "recipe_list=", "recipes", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe?", "recipe_list", "recipe_list=", "recipes", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "": null, "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "home", "hour", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "make_module", "meta_class", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "": null, "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value", "value_for_platform", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gem_binary", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reference", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "append", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group_name", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "members", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "value_for_platform", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "headers", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "message", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "bcast", "blank?", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "hwaddr", "ignore_failure", "immediate_notifications", "in?", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "mask", "meta_class", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gateway", "gem", "hash", "hostname", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "priority", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group", "hash", "home", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "manage_home", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "arch", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_11.2.0.json0000644000004100000410000054221112263752452021715 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "for_json", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "for_json", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "values", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "init_command", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.9.0.json0000644000004100000410000040346612263752452021652 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "prepare_for_run", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_list", "recipe_list=", "recipes", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "prepare_for_run", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_list", "recipe_list=", "recipes", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "": null, "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "package": [ "install", "nothing", "purge", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "home", "hour", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "make_module", "meta_class", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delim", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value", "value_for_platform", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gem_binary", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reference", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "append", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group_name", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "members", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "users", "validate", "value_for_platform", "y" ], "": null, "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "message", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "bcast", "blank?", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "hwaddr", "ignore_failure", "in?", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "mask", "meta_class", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "onboot", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "raid_device", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gateway", "gem", "hash", "hostname", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reload_command", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "status_command", "stop_command", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group", "hash", "home", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "manage_home", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_11.0.0.json0000644000004100000410000054221112263752452021713 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "for_json", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "for_json", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "values", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "init_command", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_10.24.0.json0000644000004100000410000051735112263752452022007 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.10.10.json0000644000004100000410000046745112263752452022007 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_10.14.2.json0000644000004100000410000051730412263752452022006 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.10.8.json0000644000004100000410000044065712263752452021735 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value", "value_for_platform", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "allowed_actions", "allowed_actions=", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "append", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "value_for_platform", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "priority", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.9.12.json0000644000004100000410000044453312263752452021735 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_list", "recipe_list=", "recipes", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_list", "recipe_list=", "recipes", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "": null, "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "home", "hour", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "make_module", "meta_class", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "": null, "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value", "value_for_platform", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gem_binary", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reference", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "append", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group_name", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "members", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "value_for_platform", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "headers", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "message", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "bcast", "blank?", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "hwaddr", "ignore_failure", "immediate_notifications", "in?", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "mask", "meta_class", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gateway", "gem", "hash", "hostname", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "priority", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group", "hash", "home", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "manage_home", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "arch", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.10.2.json0000644000004100000410000042647212263752452021726 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value", "value_for_platform", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "append", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "value_for_platform", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "priority", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "arch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_10.14.4.json0000644000004100000410000051730412263752452022010 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_10.18.0.json0000644000004100000410000051735112263752452022012 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_10.26.0.json0000644000004100000410000051735112263752452022011 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_10.16.6.json0000644000004100000410000051733012263752452022013 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.9.16.json0000644000004100000410000044464512263752452021745 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe?", "recipe_list", "recipe_list=", "recipes", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe?", "recipe_list", "recipe_list=", "recipes", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "": null, "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "home", "hour", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "make_module", "meta_class", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "": null, "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value", "value_for_platform", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gem_binary", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reference", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "append", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group_name", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "members", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "value_for_platform", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "headers", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "message", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "bcast", "blank?", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "hwaddr", "ignore_failure", "immediate_notifications", "in?", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "mask", "meta_class", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gateway", "gem", "hash", "hostname", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "priority", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group", "hash", "home", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "manage_home", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "arch", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_10.14.0.json0000644000004100000410000051730412263752452022004 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.9.4.json0000644000004100000410000040563312263752452021654 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "prepare_for_run", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_list", "recipe_list=", "recipes", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "prepare_for_run", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_list", "recipe_list=", "recipes", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "": null, "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "package": [ "install", "nothing", "purge", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "home", "hour", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "make_module", "meta_class", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "": null, "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delim", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value", "value_for_platform", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gem_binary", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reference", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "append", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group_name", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "members", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "users", "validate", "value_for_platform", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "message", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "bcast", "blank?", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "hwaddr", "ignore_failure", "in?", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "mask", "meta_class", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "onboot", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "raid_device", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gateway", "gem", "hash", "hostname", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reload_command", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "status_command", "stop_command", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group", "hash", "home", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "manage_home", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediate", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_10.24.4.json0000644000004100000410000051735112263752452022013 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_10.18.2.json0000644000004100000410000051735112263752452022014 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_10.20.0.json0000644000004100000410000051735112263752452022003 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_10.12.0.json0000644000004100000410000046745112263752452022011 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_11.4.2.json0000644000004100000410000054221112263752452021721 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "for_json", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "__id__", "__send__", "apply_expansion_attributes", "attribute", "attribute?", "attributes", "automatic_attrs", "automatic_attrs=", "chef_environment", "chef_environment=", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "create", "default", "default!", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "environment", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "for_json", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override!", "override_attrs", "override_attrs=", "override_unless", "parse_attribute_file_spec", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_context", "run_context=", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "registry_key": [ "create", "create_if_missing", "delete", "delete_key", "nothing" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing", "run" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "registry_key": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "architecture", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "values", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "init_command", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "registry_data_exists?", "registry_get_subkeys", "registry_get_values", "registry_has_subkeys?", "registry_key_exists?", "registry_value_exists?", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_0.9.10.json0000644000004100000410000044453312263752452021733 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_list", "recipe_list=", "recipes", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "value_for_platform", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "blank?", "cdb_destroy", "cdb_save", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "dup", "each", "each_attribute", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "in?", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_list", "recipe_list=", "recipes", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "": null, "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "nothing" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "day", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "home", "hour", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "make_module", "meta_class", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "": null, "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value", "value_for_platform", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookie", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gem_binary", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reference", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "append", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group_name", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "members", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "value_for_platform", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "headers", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "message", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "value_for_platform", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "bcast", "blank?", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "hwaddr", "ignore_failure", "immediate_notifications", "in?", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "mask", "meta_class", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "quacks_like?", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gateway", "gem", "hash", "hostname", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "block", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "creates", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "pattern", "platform?", "priority", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "startup_type", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "backup", "blank?", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "make_module", "meta_class", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_restart", "allowed_actions", "allowed_actions=", "before_migrate", "before_restart", "before_symlink", "blank?", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "copy_exclude", "create_dirs_before_symlink", "current_path", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "git_ssh_wrapper", "group", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "quacks_like?", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "revision", "role", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "value_for_platform", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "blank?", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "gid", "group", "hash", "home", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "manage_home", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "value_for_platform", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "allowed_actions", "allowed_actions=", "arch", "blank?", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "data_bag", "data_bag_item", "define_singleton_method", "delayed_notifications", "deprecated_ivar", "display", "dup", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "extend", "filename_to_qualified_string", "freeze", "frozen?", "full_const_get", "full_const_set", "gem", "hash", "ignore_failure", "immediate_notifications", "in?", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "make_module", "meta_class", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "private_methods", "protected_methods", "provider", "provider=", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "quacks_like?", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "try_call", "try_dup", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "value_for_platform", "version", "y" ] } }foodcritic-3.0.3/chef_dsl_metadata/chef_10.16.4.json0000644000004100000410000051733012263752452022011 0ustar www-datawww-data{ "dsl_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "data_bag", "data_bag_item", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "platform?", "platform_family?", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "search", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "value_for_platform", "value_for_platform_family", "with_indexer_metadata", "y" ], "node_methods": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "[]", "[]=", "__id__", "__send__", "add_to_index", "apply_expansion_attributes", "attribute", "attribute=", "attribute?", "automatic_attrs", "automatic_attrs=", "cdb_destroy", "cdb_save", "chef_environment", "chef_server_rest", "class", "class_from_file", "clone", "construct_attributes", "consume_attributes", "consume_external_attrs", "consume_run_list", "convert_to_class_name", "convert_to_snake_case", "cookbook_collection", "cookbook_collection=", "couchdb", "couchdb=", "couchdb_id", "couchdb_id=", "couchdb_rev", "couchdb_rev=", "create", "default", "default_attrs", "default_attrs=", "default_unless", "define_singleton_method", "delete_from_index", "destroy", "display", "display_hash", "dup", "each", "each_attribute", "each_key", "each_value", "enum_for", "eql?", "equal?", "expand!", "extend", "filename_to_qualified_string", "find_file", "freeze", "from_file", "frozen?", "gem", "has_key?", "hash", "include_attribute", "index_id", "index_id=", "index_object_type", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is_a?", "key?", "keys", "kind_of?", "load_attribute_by_short_filename", "load_attributes", "method", "method_missing", "methods", "name", "nil?", "node", "normal", "normal_attrs", "normal_attrs=", "normal_unless", "object_id", "override", "override_attrs", "override_attrs=", "override_unless", "private_methods", "protected_methods", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe?", "recipe_list", "recipe_list=", "reset_defaults_and_overrides", "respond_to?", "respond_to_missing?", "role?", "run_list", "run_list=", "run_list?", "run_state", "run_state=", "save", "send", "set", "set_if_args", "set_or_return", "set_unless", "singleton_class", "singleton_methods", "snake_case_basename", "store", "systemu", "tags", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "update_from!", "validate", "with_indexer_metadata", "y" ], "actions": { "apt_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "bash": [ "nothing", "run" ], "breakpoint": [ "break", "nothing" ], "chef_gem": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "cookbook_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "cron": [ "create", "delete", "nothing" ], "csh": [ "nothing", "run" ], "deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_branch": [ "deploy", "force_deploy", "nothing", "rollback" ], "deploy_revision": [ "deploy", "force_deploy", "nothing", "rollback" ], "directory": [ "create", "delete", "nothing" ], "dpkg_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "easy_install_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "env": [ "create", "delete", "modify", "nothing" ], "erl_call": [ "nothing", "run" ], "execute": [ "nothing", "run" ], "file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "freebsd_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "gem_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "git": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "group": [ "create", "manage", "modify", "nothing", "remove" ], "http_request": [ "delete", "get", "head", "nothing", "options", "post", "put" ], "ifconfig": [ "add", "delete", "disable", "enable", "nothing" ], "ips_package": [ "install", "remove", "upgrade" ], "link": [ "create", "delete", "nothing" ], "log": [ "nothing", "write" ], "macports_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "mdadm": [ "assemble", "create", "nothing", "stop" ], "mount": [ "disable", "enable", "mount", "nothing", "remount", "umount" ], "ohai": [ "nothing", "reload" ], "package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "pacman_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "perl": [ "nothing", "run" ], "portage_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "python": [ "nothing", "run" ], "remote_directory": [ "create", "create_if_missing", "delete", "nothing" ], "remote_file": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "route": [ "add", "delete", "nothing" ], "rpm_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "ruby": [ "nothing", "run" ], "ruby_block": [ "create", "nothing" ], "scm": [ "checkout", "diff", "export", "log", "nothing", "sync" ], "script": [ "nothing", "run" ], "service": [ "disable", "enable", "nothing", "reload", "restart", "start", "stop" ], "smart_o_s_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ], "subversion": [ "checkout", "diff", "export", "force_export", "log", "nothing", "sync" ], "template": [ "create", "create_if_missing", "delete", "nothing", "touch" ], "timestamped_deploy": [ "deploy", "force_deploy", "nothing", "rollback" ], "user": [ "create", "lock", "manage", "modify", "nothing", "remove", "unlock" ], "yum_package": [ "install", "nothing", "purge", "reconfig", "remove", "upgrade" ] }, "attributes": { "apt_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "default_release", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "bash": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "breakpoint": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "chef_gem": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "cookbook_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "cron": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "day", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "home", "hour", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mailto", "method", "method_missing", "methods", "minute", "month", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "weekday", "y" ], "csh": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_branch": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "deploy_revision": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "dpkg_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "easy_install_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "easy_install_binary", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "module_name", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "python_binary", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "env": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "delim", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "key_name", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value", "value_for_platform", "value_for_platform_family", "y" ], "erl_call": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "cookie", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "distributed", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "name_type", "nil?", "node", "node_name", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "execute": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "freebsd_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "gem_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gem_binary", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "git": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "allowed_actions", "allowed_actions=", "as_json", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reference", "remote", "repo", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "group": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "append", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group_name", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "members", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "users", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "http_request": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "headers", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "message", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "url", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ifconfig": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bcast", "bootproto", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "hwaddr", "identity", "ignore_failure", "immediate_notifications", "inet_addr", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "mask", "method", "method_missing", "methods", "metric", "mtu", "name", "network", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "onboot", "only_if", "only_if_args", "onparent", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ips_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "accept_license", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "link": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "link_type", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target_file", "to", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "log": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "macports_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "mdadm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "bitmap", "chunk", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "devices", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "exists", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "level", "load_prior_resource", "metadata", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "raid_device", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "mount": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "device_type", "display", "dump", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "fstype", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mount_point", "mounted", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "params", "params=", "pass", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ohai": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "plugin", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "pacman_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "perl": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "portage_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "python": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_directory": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "files_backup", "files_group", "files_mode", "files_owner", "files_rights", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "overwrite", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge", "recipe_name", "recipe_name=", "recursive", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "remote_file": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "route": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "device", "display", "domain", "domainname", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gateway", "gem", "hash", "hostname", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "metric", "name", "netmask", "networking", "networking_ipv6", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "route_type", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "target", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "rpm_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "ruby": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "ruby_block": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "block", "block_name", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "scm": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "script": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "code", "command", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "creates", "customize_exception", "cwd", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "env", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flags", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "interpreter", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "returns", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "timeout", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "umask", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "service": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enabled", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "parameters", "params", "params=", "pattern", "platform?", "platform_family?", "priority", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "reload_command", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "running", "search", "send", "service_name", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "start_command", "state", "status_command", "stop_command", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "smart_o_s_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ], "subversion": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "remote", "repository", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_info_args", "svn_password", "svn_username", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "template": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "backup", "checksum", "class", "clone", "content", "convert_to_class_name", "convert_to_snake_case", "cookbook", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deny_rights", "deprecated_ivar", "diff", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "inherits", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "local", "method", "method_missing", "methods", "mode", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "owner", "params", "params=", "path", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "rights", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "variables", "y" ], "timestamped_deploy": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "additional_remotes", "after_created", "after_restart", "allowed_actions", "allowed_actions=", "as_json", "before_migrate", "before_restart", "before_symlink", "branch", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "copy_exclude", "create_dirs_before_symlink", "current_path", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deploy_to", "deprecated_ivar", "depth", "destination", "display", "dup", "elapsed_time", "enable_submodules", "enclosing_provider", "enclosing_provider=", "enum_for", "environment", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "git_ssh_wrapper", "group", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "keep_releases", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "migrate", "migration_command", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "purge_before_symlink", "recipe_name", "recipe_name=", "remote", "repo", "repository", "repository_cache", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "restart", "restart_command", "retries", "retries=", "retry_delay", "retry_delay=", "revision", "role", "rollback_on_error", "run_action", "run_context", "run_context=", "scm_provider", "search", "send", "set_if_args", "set_or_return", "shallow_clone", "shared_path", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "ssh_wrapper", "state", "subscribes", "supports", "svn_arguments", "svn_force_export", "svn_info_args", "svn_password", "svn_username", "symlink_before_migrate", "symlinks", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "user", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "user": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allowed_actions", "allowed_actions=", "as_json", "class", "clone", "comment", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "freeze", "frozen?", "gem", "gid", "group", "hash", "home", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "manage_home", "method", "method_missing", "methods", "name", "nil?", "node", "non_unique", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "params", "params=", "password", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "shell", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source_line", "source_line=", "state", "subscribes", "supports", "system", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "uid", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "username", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "y" ], "yum_package": [ "!", "!=", "!~", "<=>", "==", "===", "=~", "__id__", "__send__", "action", "add_notification", "after_created", "allow_downgrade", "allowed_actions", "allowed_actions=", "arch", "as_json", "class", "clone", "convert_to_class_name", "convert_to_snake_case", "cookbook_name", "cookbook_name=", "cookbook_version", "customize_exception", "data_bag", "data_bag_item", "define_singleton_method", "defined_at", "delayed_notifications", "deprecated_ivar", "display", "dup", "elapsed_time", "enclosing_provider", "enclosing_provider=", "enum_for", "epic_fail", "eql?", "equal?", "events", "extend", "filename_to_qualified_string", "flush_cache", "freeze", "frozen?", "gem", "hash", "identity", "ignore_failure", "immediate_notifications", "initialize_clone", "initialize_dup", "inspect", "instance_eval", "instance_exec", "instance_of?", "instance_variable_defined?", "instance_variable_get", "instance_variable_set", "instance_variables", "is", "is_a?", "kind_of?", "load_prior_resource", "method", "method_missing", "methods", "name", "nil?", "node", "noop", "not_if", "not_if_args", "notifies", "notifies_delayed", "notifies_immediately", "object_id", "only_if", "only_if_args", "options", "package_name", "params", "params=", "platform?", "platform_family?", "private_methods", "protected_methods", "provider", "provider=", "provider_for_action", "psych_to_yaml", "psych_y", "public_method", "public_methods", "public_send", "recipe_name", "recipe_name=", "resolve_notification_references", "resource_name", "resources", "respond_to?", "respond_to_missing?", "response_file", "retries", "retries=", "retry_delay", "retry_delay=", "run_action", "run_context", "run_context=", "search", "send", "set_if_args", "set_or_return", "should_skip?", "singleton_class", "singleton_methods", "snake_case_basename", "source", "source_line", "source_line=", "state", "subscribes", "supports", "systemu", "taint", "tainted?", "tap", "to_enum", "to_hash", "to_json", "to_s", "to_text", "to_yaml", "to_yaml_properties", "trust", "untaint", "untrust", "untrusted?", "updated", "updated=", "updated?", "updated_by_last_action", "updated_by_last_action?", "validate", "validate_action", "value_for_platform", "value_for_platform_family", "version", "y" ] } }