method

github

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