summaryrefslogtreecommitdiff
path: root/lib/chef/resource/lwrp_base.rb
Commit message (Expand)AuthorAgeFilesLines
* add a commentLamont Granquist2018-08-221-0/+2
* lazy the default resource_name until after parsingLamont Granquist2018-08-221-2/+2
* mechanical conversion of most debug log statements to traceThom May2018-03-261-2/+2
* prepping for rubocop 0.52.1lcg/rubocop-0.52.1Lamont Granquist2018-01-171-3/+2
* Try removing the const-ificiation of DSL-based resources/providers.Noah Kantrowitz2017-04-031-2/+0
* Copyright year update for 2016 and massive cleanup.Noah Kantrowitz2016-02-021-1/+1
* Use double quotes by defaultThom May2016-01-141-8/+8
* debug log messages upon reloaded resourcesif/warn-on-reload-resourceIsa Farnik2016-01-121-1/+1
* Remove now-unused function (already implemented by Chef::Resource)John Keiser2015-11-061-4/+0
* Update messaging to match LWRP -> Custom Resource renameTim Smith2015-10-211-6/+6
* Revert "Merge pull request #3603 from chef/jdm/lwrp-base"Jay Mundrawala2015-06-301-46/+11
* Get tests passingJay Mundrawala2015-06-301-0/+15
* Fix ability to monkey match LWRP through Chef::Resource::MyLwrpJay Mundrawala2015-06-301-11/+31
* Create property on resource, alias attribute to itJohn Keiser2015-06-231-7/+1
* Support arrays as input to actions / allowed_actionsjk/3535John Keiser2015-06-161-1/+2
* Ensure :nothing is in the list of allowed actions for an LWRPJohn Keiser2015-06-161-1/+1
* Move deprecated LWRP class override to the deprecation method registrarJohn Keiser2015-06-031-5/+2
* Fix issue #3463: use real constants instead of const_missingJohn Keiser2015-06-031-3/+6
* Add default_action and allowed_actions to Resource class, remove from LWRPJohn Keiser2015-06-011-37/+7
* Add use_automatic_resource_nameJohn Keiser2015-06-011-1/+1
* Move resource_name up to Resource, and figure out its value automaticallyJohn Keiser2015-06-011-25/+4
* Merge branch 'master' of https://github.com/Kasen/chef into Kasen-masterThom May2015-05-201-1/+1
|\
| * Behavior of default_action method changed.Pavel Yudin2015-03-271-1/+1
* | Fix LWRP instance.to_s to look like normal resources againjk/fix_lwrp_class_nameJohn Keiser2015-05-181-2/+2
* | Deprecate Chef::Provider::LwrpClass the same way we did ResourceJohn Keiser2015-05-131-4/+4
* | Allow LWRPBase.loaded_lwrps to be called from subclassesJohn Keiser2015-05-131-4/+6
* | Deprecate dsl_name (the "DSL name for this class" is no longer meaningful).John Keiser2015-05-131-96/+96
* | Make sure LWRPBase requires what it uses (fix travis issue)John Keiser2015-05-131-0/+7
* | Move LWRP class deprecation warning to const_missingJohn Keiser2015-05-131-24/+2
* | Remove provides_nothingJohn Keiser2015-05-131-3/+0
* | Add provides_nothing and let it override even Chef::Resource::X automatic namesJohn Keiser2015-05-131-0/+3
* | Deprecate automatic method_missing and Chef::Resource lookupJohn Keiser2015-05-131-18/+50
|/
* Revert "Merge pull request #2956 from chef/lcg/deploy-fixes"Jay Mundrawala2015-03-251-0/+8
* nillable deploy resource + nillable LWRP argsLamont Granquist2015-02-231-8/+0
* fix LWRP constant lookupsLamont Granquist2015-02-031-1/+1
* Use default argument values for #define_method and avoid exceptions (ruby < 2...Xabier de Zuazo2015-01-271-3/+2
* LWRPBase#attribute: fix the ArgumentError description to include 0 lengthXabier de Zuazo2015-01-271-1/+1
* Use #define_method instead of #class_eval (ruby 1.8 specific, issue #2497)Xabier de Zuazo2015-01-271-11/+3
* Fix issue where LWRP resources using `provides` failsJay Mundrawala2014-12-051-1/+1
* Merge pull request #2197 from opscode/sersut/fixup-chef-1662Serdar Sutay2014-10-091-1/+12
|\
| * Revert "Remove appending :actions and :valid_actions"Serdar Sutay2014-10-091-1/+12
* | Updates based on PR comments.sersut/no-lwrp-class-reloadSerdar Sutay2014-10-091-1/+0
* | Don't override LWRP resources or providers anymore in Chef 12.Serdar Sutay2014-10-081-13/+12
|/
* fixup adding default_actions to actionLamont Granquist2014-07-231-2/+3
* Allow an array in default_actionSeth Vargo2014-07-231-3/+9
* Remove appending :actions and :valid_actionsSeth Vargo2014-07-181-12/+1
* Use defined? to check for instance variablesSeth Vargo2014-07-111-2/+2
* Delegate DSL method values to their superclassSeth Vargo2014-07-111-7/+31
* Allow default values to be a DelayedEvaluatorSeth Vargo2014-07-111-0/+4
* Allow users to set the +resource_name+ in an LWRP programaticallySeth Vargo2014-06-301-7/+16