summaryrefslogtreecommitdiff
path: root/lib/chef/dsl/recipe.rb
Commit message (Collapse)AuthorAgeFilesLines
* deprecate Chef::DSL::Recipe::FullDSLlcg/deprecate-fulldslLamont Granquist2016-03-161-18/+16
| | | | | | | | this module was created out of a bit of excessive paranoia instead of simply adding mixins that we always use with Chef::DSL::Recipe directly to Chef::DSL::Recipe. lets try and YAGNI this class and just add it directly. these modules are already injected into everyone's recipes and providers, so I can't imagine a huge amount of backcompat breaks.
* lazy module inclusion into DSL moduleslcg/use-and-lazy-module-includeLamont Granquist2016-03-151-2/+7
| | | | | | Chef::DSL::Recipe::FullDSL.send(:include, MyModule) will now patch all its descendants that it has been included into (works the way actual inheritance works now).
* Update all auth email address from opscode.com and getchef.com to chef.io.Noah Kantrowitz2016-02-021-2/+2
| | | Generated via git ls-files | xargs perl -pi -e "s/(Author.*?<[^@]+@)(?:opscode\\.com|getchef\\.com)(>)/\\1chef.io\\2/gi"
* Copyright year update for 2016 and massive cleanup.Noah Kantrowitz2016-02-021-1/+1
| | | Generated via git ls-files | xargs perl -pi -e "s/[Cc]opyright (?:\([Cc]\) )?((?\!$(date +%Y))\\d{4})(-\\d{4})?([, ][ \d]+)*(,|(?= ))/Copyright \\1-$(date +%Y),/g"
* Autofixing Style/PercentLiteralDelimeterslcg/percentliteraldelimetersLamont Granquist2016-01-181-2/+2
| | | | | | See chef/chefstyle#11 for analysis and discussion. We select '{}' since audit of our source code shows that is the most common, and that used to be the dominant learning paradigm (e.g. in ruby 1.9 pickaxe book.
* Use double quotes by defaultThom May2016-01-141-15/+15
| | | | | | | This is an entirely mechanically generated (chefstyle -a) change, to go along with chef/chefstyle#5 . We should pick something and use it consistently, and my opinion is that double quotes are the appropriate thing.
* extract declare_resource to a mixin and extend APILamont Granquist2015-12-011-73/+3
| | | | | | | - extract to its own mixin so it can be included without method_missing and the rest of the resources DSL - add ability to inject different run_context - add ability to create_if_missing into the resource_collection
* Rename log.deprecation to log_deprecationJohn Keiser2015-09-011-2/+2
|
* Pass deprecations through formatter instead of logsJohn Keiser2015-09-011-3/+2
|
* Add current_value_does_not_exist! API, pretty up the outputJohn Keiser2015-07-311-2/+4
|
* Rename Chef::DSL::Recipe::Everything -> FullDSLJohn Keiser2015-06-231-1/+1
|
* Create the `action :name do ... end` syntax for ResourceJohn Keiser2015-06-231-2/+20
|
* Make resource_for_short_name look up the canonical resourcejk/automatic-automatic-nameJohn Keiser2015-06-081-1/+1
|
* Move method_missing to the bottomJohn Keiser2015-06-021-46/+43
|
* Make resource deprecation warnings once-only; fix recipe DSL tests back upJohn Keiser2015-06-021-0/+1
|
* Narrow resolvers to only look at parts of the map we supportJohn Keiser2015-06-021-11/+0
|
* include powershell_out in DSL placesLamont Granquist2015-05-291-0/+2
|
* warn -> deprecationJohn Keiser2015-05-131-5/+5
|
* Deprecate automatic method_missing and Chef::Resource lookupJohn Keiser2015-05-131-35/+50
| | | | | - Declare all resource DSL as methods on Chef::DSL::Resources - Declare all definition DSL as methods on Chef::DSL::Definitions
* Missing require - causes missing Constant when files are loaded in ↵tyler-ball2015-02-251-0/+1
| | | | unexpected order
* Add comments, fix faulty ||=John Keiser2015-02-171-0/+38
|
* Skip 3694 warnings on trivial resource cloningLamont Granquist2015-01-121-31/+11
| | | | | | | Turns the 3694 warning into a debug message if the prior resource is identical to the current resource. Suggestion for opscode/chef-rfc#76 This also moves resource building out to its own class.
* First pass at fixing broken notificationstyler-ball2014-12-161-1/+2
| | | | | | Fixing some code I changed unecessarily Removing TODOs which are not necessary
* Chef-12 RC Provider ResolverLamont Granquist2014-10-241-1/+0
| | | | | makes resource and provider class resolution more dynamic. begins deprecation of Chef::Platform static mapping.
* Merge pull request #2216 from opscode/tball/bsd_package_nameTyler Ball2014-10-171-16/+2
|\ | | | | Notify a resource by the `resource[name]` key it was written as
| * Cleaning up based on review commentstyler-ball2014-10-171-1/+1
| |
| * Refactoring ResourceCollection interface to be backwards compatiable, all ↵tyler-ball2014-10-161-2/+1
| | | | | | | | specs continue to pass, removing ResourceSet and ResourceList from consumer knowledge
| * first attempt at refactoring ResourceCollection into two objectstyler-ball2014-10-161-16/+3
| |
* | return whatever the definition returnsLamont Granquist2014-10-161-5/+1
|/ | | | | | | this can allow method chaining so that if you call a definition to create a resource, and the definition takes the time to return the resource as its retval, then you can hang a .not_if off of the definition (or .only_if/.notifies/.subscribes/etc)
* Changed exception to ResourceNotFound and printed the passed block nameNolan Davidson2014-09-111-1/+2
|
* Added exec method to Recipe, addressing Issue 1689Nolan Davidson2014-09-111-0/+4
|
* Make sure freebsd_package is captured with the resource name it's declared ↵Serdar Sutay2014-08-131-0/+14
| | | | with in resource collection.
* add shell_out mixins to recipe DSLLamont Granquist2014-07-281-0/+1
|
* Make it possible to include Chef::Provider / Chef::ResourceJohn Keiser2014-04-241-1/+4
| | | | without circular dependencies or missing deps
* Remove default implementation of Recipe DSL interfacedanielsdeleo2014-02-191-14/+0
| | | | | Depending on the inheritance tree, the default implementations could incorrectly be preferred to the real ones.
* Move method call to resource.load_prior_resource to fix CHEF-5052 resource ↵Jon Cowie2014-02-191-2/+3
| | | | merge issues
* Localize rescues in Recipe method_missing DSLdanielsdeleo2014-02-071-5/+7
|
* Better specify what happens for NoMethodErrors in the DSLdanielsdeleo2014-02-031-2/+23
|
* Expose resource creation via more static methodsdanielsdeleo2014-02-031-38/+98
|
* [CHEF-3783] Make deprecated constants availabledanielsdeleo2013-01-231-1/+4
| | | | | | * Make deprecated constants in Chef::Mixin available by loading the relevant files from the chef/dsl files that replace them. * Add deprecation warnings via const_missing hook.
* Merge branch '10-stable' into integrate-chef-10-18-0danielsdeleo2013-01-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: .gitattributes chef-expander/Rakefile chef-expander/lib/chef/expander/version.rb chef-server-api/Rakefile chef-server-api/chef-server-api.gemspec chef-server-api/lib/chef-server-api/version.rb chef-server-webui/Rakefile chef-server-webui/chef-server-webui.gemspec chef-server-webui/lib/chef-server-webui/version.rb chef-server/Rakefile chef-server/lib/chef-server/version.rb chef-solr/lib/chef/solr/version.rb chef.gemspec chef/Rakefile chef/spec/support/platform_helpers.rb chef/spec/support/shared/functional/file_resource.rb chef/spec/unit/api_client_spec.rb chef/spec/unit/provider/directory_spec.rb ci/jenkins_run_tests.bat ci/jenkins_run_tests.sh distro/common/html/chef-client.8.html distro/common/html/chef-expander.8.html distro/common/html/chef-expanderctl.8.html distro/common/html/chef-server-webui.8.html distro/common/html/chef-server.8.html distro/common/html/chef-shell.1.html distro/common/html/chef-solo.8.html distro/common/html/chef-solr.8.html distro/common/html/knife-bootstrap.1.html distro/common/html/knife-client.1.html distro/common/html/knife-configure.1.html distro/common/html/knife-cookbook-site.1.html distro/common/html/knife-cookbook.1.html distro/common/html/knife-data-bag.1.html distro/common/html/knife-environment.1.html distro/common/html/knife-exec.1.html distro/common/html/knife-index.1.html distro/common/html/knife-node.1.html distro/common/html/knife-role.1.html distro/common/html/knife-search.1.html distro/common/html/knife-ssh.1.html distro/common/html/knife-status.1.html distro/common/html/knife-tag.1.html distro/common/html/knife.1.html distro/common/man/man1/chef-shell.1 distro/common/man/man1/knife-bootstrap.1 distro/common/man/man1/knife-client.1 distro/common/man/man1/knife-configure.1 distro/common/man/man1/knife-cookbook-site.1 distro/common/man/man1/knife-cookbook.1 distro/common/man/man1/knife-data-bag.1 distro/common/man/man1/knife-environment.1 distro/common/man/man1/knife-exec.1 distro/common/man/man1/knife-index.1 distro/common/man/man1/knife-node.1 distro/common/man/man1/knife-role.1 distro/common/man/man1/knife-search.1 distro/common/man/man1/knife-ssh.1 distro/common/man/man1/knife-status.1 distro/common/man/man1/knife-tag.1 distro/common/man/man1/knife.1 distro/common/man/man8/chef-client.8 distro/common/man/man8/chef-expander.8 distro/common/man/man8/chef-expanderctl.8 distro/common/man/man8/chef-server-webui.8 distro/common/man/man8/chef-server.8 distro/common/man/man8/chef-solo.8 distro/common/man/man8/chef-solr.8 lib/chef/api_client.rb lib/chef/rest.rb lib/chef/version.rb spec/functional/knife/ssh_spec.rb spec/functional/resource/cookbook_file_spec.rb spec/spec_helper.rb spec/stress/win32/security_spec.rb spec/support/shared/functional/securable_resource.rb spec/unit/config_spec.rb spec/unit/knife/ssh_spec.rb
* [OC-3564] move core Chef to the repo root \o/ \m/Seth Chisamore2012-10-301-0/+84
The opscode/chef repository now only contains the core Chef library code used by chef-client, knife and chef-solo!