Class: MutatorRails::FullMutate
- Inherits:
-
Object
- Object
- MutatorRails::FullMutate
- Includes:
- Adamantium::Flat
- Defined in:
- lib/mutator_rails/full_mutate.rb
Instance Method Summary collapse
- #call ⇒ Object
- #changed ⇒ Object
-
#initialize ⇒ FullMutate
constructor
A new instance of FullMutate.
- #j1 ⇒ Object
- #unprocessed ⇒ Object
Constructor Details
#initialize ⇒ FullMutate
Returns a new instance of FullMutate.
10 11 12 13 |
# File 'lib/mutator_rails/full_mutate.rb', line 10 def initialize(*) excluded_files @guide = Guide.new end |
Instance Method Details
#call ⇒ Object
15 16 17 |
# File 'lib/mutator_rails/full_mutate.rb', line 15 def call process(all_files) end |
#changed ⇒ Object
27 28 29 |
# File 'lib/mutator_rails/full_mutate.rb', line 27 def changed process(all_files - unprocessed_files - j1_files) end |
#j1 ⇒ Object
23 24 25 |
# File 'lib/mutator_rails/full_mutate.rb', line 23 def j1 process(j1_files) end |
#unprocessed ⇒ Object
19 20 21 |
# File 'lib/mutator_rails/full_mutate.rb', line 19 def unprocessed process(unprocessed_files) end |