method
github
v4.2.1 -
Show latest stable
- Class:
Rails::Generators::AppBase::GemfileEntry
github(name, github, branch = nil, comment = nil)public
No documentation available.
# File railties/lib/rails/generators/app_base.rb, line 183
def self.github(name, github, branch = nil, comment = nil)
if branch
new(name, nil, comment, github: github, branch: branch)
else
new(name, nil, comment, github: github)
end
end