aboutsummaryrefslogtreecommitdiffstats
path: root/app/services
diff options
context:
space:
mode:
authorRobert2017-08-01 22:09:44 +0200
committerRobert2017-08-01 22:09:44 +0200
commitf4a879becb6ac5f3229f77e8a14122f085e02be5 (patch)
tree57cdc3ee0654f62e2664aa04492c0e48e0cb4623 /app/services
parent1f09ead58c9c603e9d767781ceb82859b2393f49 (diff)
downloadchouette-core-f4a879becb6ac5f3229f77e8a14122f085e02be5.tar.bz2
Unneeded FileService Implementation and Specs removed (deliberately after merge to keep a reference in feature branch)
Diffstat (limited to 'app/services')
-rw-r--r--app/services/file_service.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/app/services/file_service.rb b/app/services/file_service.rb
deleted file mode 100644
index 3b3ff3561..000000000
--- a/app/services/file_service.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-# TODO: Delete me after stable implementation of #1726
-# module FileService extend self
-
-# def unique_filename( path, enum_with: with_ints )
-# file_names = enum_with.map( &file_name_maker(path) )
-# file_names
-# .drop_while( &File.method(:exists?) )
-# .next
-# end
-
-# def with_ints(format='%d')
-# (0..Float::INFINITY)
-# .lazy
-# .map{ |n| format % n }
-# end
-
-
-# private
-
-# def file_name_maker path
-# ->(n){ [path, n].join('_') }
-# end
-
-# end