-
Notifications
You must be signed in to change notification settings - Fork 168
Conversation
Not passing yet because Mixlib::CLI is confusing me with execution context and wrapping parse options.
@martinisoft Since the command has no options right now, I think it might be missing the call to # arguments will be any non-option arguments from ARGV
arguments = parse_options(argv) |
@danielsdeleo I've tried adding that into the Base parser, but get an invalid option error.
|
Ugh, that's because mixlib-cli options don't inherit from the superclass 😦 Something like this might work: module SharedGeneratorMethods
include Mixlib::CLI
option :skeleton # etc.
end
class GeneratorClass
options.merge!(SharedGeneratorMethods)
end It's kinda ugly so it'd be preferable to add support directly to mixlib-cli for that kind of thing (even if the implementation ends up being the same). |
@danielsdeleo Ah great suggestion. Newest commit gets one of the tests to pass, but now it looks like that is creating nil in the run context so I wonder if the option parsing is not working in some superclasses.
|
|
@sethvargo Open to suggestions on the name. Went with skel based upon those comments to stick to original intent. I'm thinking along the lines of 'template' similar to Rails. |
I originally picked "skeleton" based on the similarity to stuff like |
I actually disagree. It's all about context. Rails calls their custom generator things "templates", and Rails also has a notion of "templates" in view. If I can't convince you to use template, I think I think
I really think |
@sethvargo My specific concern about "template" is that it makes it sound like you can write just the template you want to use for a particular file, e.g., Also, I expect that custom generators will be more of an intermediate to advanced feature, so I don't think it's a concern to be "too Cheffy." By the time you use this you should either know the basics of Chef (or maybe be a new employee following instructions from someone else who knows Chef). I also don't think that web frameworks will necessary be a shared cultural context we can expect of everyone. What about operations people who are moving from bash/perl scripting to programming via Chef? |
What about something longer, but more descriptive? Like |
@sethvargo that works for me, if paired with a short option like |
👍 Aaron? |
Agreed on both counts. Incoming commits to change and fix that. Thank you @danielsdeleo and @sethvargo |
This is per discussion in the Pull Request as skeleton may not be the best name for this feature. Also did related cleanup around the naming to keep things more consistent.
Cleaned up a bit more of the code and tidy'd up the inline documentation. |
include Mixlib::CLI | ||
|
||
option :generator_cookbook, | ||
:short => "-g GENERATOR_COOKBOOK_DIR", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Pendantic] I would say "PATH" over "DIR". I think it's clearer
This will be a bit more consistent with the existing code farther down the module.
This looks good, but I wonder if merging with options is the "right" thing to do. What if we did something like: module GeneratorOptions
def self.included(base)
base.send(:option, ...)
end
end And then Command.new.is_a?(GeneratorOptions) I don't know. What do you y'all think? |
@sethvargo I tried that with knife-ec2 and it kinda sucks, you have to do the whole thing inside |
I have updated the original request text and waiting on Travis to build. Regarding the self.included suggestion, I personally prefer going the composition method that @danielsdeleo suggests instead. |
Fair enough |
Travis is happy. 👍 |
LGTM. @opscode/client-eng Look good to you? |
How about naming the option We can make this option more intelligent in the future to just get a simple recipe in addition to a cookbook as well. |
Also would be great if you can leave a note in |
@serdar I answered that in my comment above:
|
@martinisoft I think @serdar was talking to you here:
|
@sersut I'm happy with |
So what I'm saying is we can change this feature in the future to get either a cookbook or a straight recipe. This would make it easier to write a generator since one doesn't need to adhere to cookbook file layout. If we name this |
CLA Verified (840) |
Convinced that the option should be called |
@sersut updated the CHANGELOG, let me know if the explanation and formatting is sufficient. |
Thanks a lot @martinisoft. Awesome job!! |
Add skeleton option for chef generate
I'd like to add an option to the
chef generate
command to allow customization of the 'skeleton' cookbook path. Currently it is hard-wired in to the gem and it seems the option is documented in the methods for the generators here and here.Eventually I'd like to re-factor this a bit so it can simply command the specified generator cookbook in a path to run a given recipe argument giving way to fully custom generators based upon a cookbook. Also, I think it's really cool that this is using a cookbook to build cookbooks 🐢.