mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
cfcea1d53a
This command is based on enginex gem by José Valim. It generates gem structure and ads dummy application into test/dummy. This can be used to start developing any kind of extension for rails 3.
7 lines
123 B
Ruby
7 lines
123 B
Ruby
class PluginBuilder < Rails::PluginBuilder
|
|
def gitignore
|
|
create_file ".gitignore", <<-R.strip
|
|
foobar
|
|
R
|
|
end
|
|
end
|