Class: Retest::Command::Rails
- Inherits:
-
Object
- Object
- Retest::Command::Rails
- Defined in:
- lib/retest/command/rails.rb
Instance Attribute Summary collapse
-
#all ⇒ Object
readonly
Returns the value of attribute all.
-
#file_system ⇒ Object
readonly
Returns the value of attribute file_system.
Instance Method Summary collapse
- #format_batch(*files) ⇒ Object
-
#initialize(all:, file_system: FileSystem) ⇒ Rails
constructor
A new instance of Rails.
- #to_s ⇒ Object
Constructor Details
#initialize(all:, file_system: FileSystem) ⇒ Rails
Returns a new instance of Rails.
6 7 8 9 |
# File 'lib/retest/command/rails.rb', line 6 def initialize(all:, file_system: FileSystem) @file_system = file_system @all = all end |
Instance Attribute Details
#all ⇒ Object (readonly)
Returns the value of attribute all.
4 5 6 |
# File 'lib/retest/command/rails.rb', line 4 def all @all end |
#file_system ⇒ Object (readonly)
Returns the value of attribute file_system.
4 5 6 |
# File 'lib/retest/command/rails.rb', line 4 def file_system @file_system end |
Instance Method Details
#format_batch(*files) ⇒ Object
16 17 18 |
# File 'lib/retest/command/rails.rb', line 16 def format_batch(*files) files.join(' ') end |
#to_s ⇒ Object
11 12 13 14 |
# File 'lib/retest/command/rails.rb', line 11 def to_s return "#{root_command} <test>" unless all root_command end |