How do you make a generator that alters a file.
Im trying to make it so that it finds a pattern in a file and adds come content to the line below it.
|
How do you make a generator that alters a file. Im trying to make it so that it finds a pattern in a file and adds come content to the line below it.
| |||
|
feedback
|
|
Rails' scaffold generator does this when it adds a route to
What it's doing is taking a path/file as the first argument, followed by a regexp pattern, gsub arguments, and the block. This is a protected method that you'll have to recreate in order to use. I'm not sure if To use
You're finding the specific line in the file, the class opener, and adding your Beware though, because this is the most brittle way to add content, which is why routing is one of the only places that uses it. The example above would normally be handled with a mix-in. | |||
|
feedback
|