summaryrefslogtreecommitdiff
path: root/lib/chef/knife/osc_user_create.rb
Commit message (Collapse)AuthorAgeFilesLines
* Remove the remaining OSC 11 knife user commandsknife_osc_11Tim Smith2018-11-041-97/+0
| | | | | | | | The previous PR removed the argv rewrite, but didn't remove the actual commands it rewrote to. Now we remove the commands so they don't show up in help. Signed-off-by: Tim Smith <tsmith@chef.io>
* Make sure knife descriptions all have periodsknife_sentences_2Tim Smith2018-07-161-3/+3
| | | | | | Some did. Some didn't. Looks weird that way. Signed-off-by: Tim Smith <tsmith@chef.io>
* fix Style/HashSyntaxLamont Granquist2018-07-021-13/+13
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Single space after periodsTim Smith2016-03-051-1/+1
| | | | | Double spacing is for typewriters. Knife doesn't run on typewriters http://www.writersdigest.com/online-editor/how-many-spaces-after-a-period
* Be way more explicit about how we're handling datatm/missed_migrationThom May2016-02-151-1/+1
| | | | | | | This just codifies the behaviour we're actually using - that we're passing a json string and expecting a hash back. Also adds a deprecation warning to the use of Chef::JSONCompat.from_json
* Update all auth email address from opscode.com and getchef.com to chef.io.Noah Kantrowitz2016-02-021-1/+1
| | | Generated via git ls-files | xargs perl -pi -e "s/(Author.*?<[^@]+@)(?:opscode\\.com|getchef\\.com)(>)/\\1chef.io\\2/gi"
* Replace all Opscode copyrights with Chef Software.Noah Kantrowitz2016-02-021-1/+1
| | | Created via git ls-files | xargs perl -pi -e "s/(Copyright.*?), Opscode(,)? Inc(\.)?/\\1, Chef Software Inc./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"
* Use double quotes by defaultThom May2016-01-141-3/+3
| | | | | | | 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.
* Move Chef::OscUser back to Chef::User namespace and new user code to ↵tylercloke2015-07-061-3/+3
| | | | | | Chef::UserV1. Also, have Chef::User (formally Chef::OscUser) use API V0 to make requests.
* Backwards compatible support for OSC 11 in knife user commands.tylercloke2015-06-051-3/+2
| | | | All knife user commands can detect when they have failed for OSC 11 reasons and forward the request to backwards compatible knife osc_user commands.
* Move old Chef::*User and related commands to Chef::Osc*User for backwards ↵tylercloke2015-06-051-0/+98
compat.