Class: Rails::Generators::AppBase::GemfileEntry
- Inherits:
-
Struct
- Object
- Struct
- Rails::Generators::AppBase::GemfileEntry
- Defined in:
- lib/rails/generators/app_base.rb
Class Method Summary collapse
- .floats(name, comment = nil) ⇒ Object
- .github(name, github, branch = nil, comment = nil) ⇒ Object
- .path(name, path, comment = nil) ⇒ Object
- .version(name, version, comment = nil) ⇒ Object
Instance Method Summary collapse
-
#initialize(name, version, comment, options = {}, commented_out = false) ⇒ GemfileEntry
constructor
A new instance of GemfileEntry.
- #to_s ⇒ Object
Constructor Details
#initialize(name, version, comment, options = {}, commented_out = false) ⇒ GemfileEntry
Returns a new instance of GemfileEntry.
418 419 420 |
# File 'lib/rails/generators/app_base.rb', line 418 def initialize(name, version, comment, = {}, commented_out = false) super end |
Class Method Details
.floats(name, comment = nil) ⇒ Object
434 435 436 |
# File 'lib/rails/generators/app_base.rb', line 434 def self.floats(name, comment = nil) new(name, nil, comment) end |
.github(name, github, branch = nil, comment = nil) ⇒ Object
422 423 424 425 426 427 428 |
# File 'lib/rails/generators/app_base.rb', line 422 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 |
.path(name, path, comment = nil) ⇒ Object
438 439 440 |
# File 'lib/rails/generators/app_base.rb', line 438 def self.path(name, path, comment = nil) new(name, nil, comment, path: path) end |
.version(name, version, comment = nil) ⇒ Object
430 431 432 |
# File 'lib/rails/generators/app_base.rb', line 430 def self.version(name, version, comment = nil) new(name, version, comment) end |
Instance Method Details
#to_s ⇒ Object
442 443 444 445 446 447 448 449 450 |
# File 'lib/rails/generators/app_base.rb', line 442 def to_s [ (comment.gsub(/^/, "# ").chomp + "\n" if comment), ("# " if commented_out), "gem \"#{name}\"", *Array(version).map { |constraint| ", \"#{constraint}\"" }, *.map { |key, value| ", #{key}: #{value.inspect}" }, ].compact.join end |