diff options
Diffstat (limited to 'lib/chef/org.rb')
-rw-r--r-- | lib/chef/org.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/chef/org.rb b/lib/chef/org.rb index d482ca504f..1b47e1f255 100644 --- a/lib/chef/org.rb +++ b/lib/chef/org.rb @@ -40,22 +40,22 @@ class Chef def name(arg = nil) set_or_return(:name, arg, - regex: /^[a-z0-9\-_]+$/) + regex: /^[a-z0-9\-_]+$/) end def full_name(arg = nil) set_or_return(:full_name, - arg, kind_of: String) + arg, kind_of: String) end def private_key(arg = nil) set_or_return(:private_key, - arg, kind_of: String) + arg, kind_of: String) end def guid(arg = nil) set_or_return(:guid, - arg, kind_of: String) + arg, kind_of: String) end def to_h |