Last active
May 16, 2018 12:50
-
-
Save mleszcz/9af60e5ace517eb145ff177e9433ae6a to your computer and use it in GitHub Desktop.
Revisions
-
mleszcz revised this gist
May 16, 2018 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,7 @@ # higher level class Copy def self.call WriteToSSD.call(ReadFromSSD.call) end end -
mleszcz revised this gist
May 16, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ class Copy def self.call processed_read = parse_read(ReadFromHDD.call) WriteToSSD.call(processed_read) end end -
mleszcz revised this gist
May 16, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # higher level class Copy def self.call processed_read = parse_read(ReadFromHDD.call) -
mleszcz created this gist
May 16, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ # high level class Copy def self.call processed_read = parse_read(ReadFromHDD.call) WriteToHDD.call(processed_read) end end # lower level Copy.call