Issue #7091 has been reported by prijutme4ty (Ilya Vorontsov). ---------------------------------------- Feature #7091: Object#puts_to https://bugs.ruby-lang.org/issues/7091 Author: prijutme4ty (Ilya Vorontsov) Status: Open Priority: Normal Assignee: Category: Target version: I suggest a new method Object#puts_to(io_or_filename) (or BasicObject#puts_to) It's usual that one-two-three-line scripts have big chains like readlines.sort.map{...}.select{...} and so on and after you wrote such a monstruous expression to process input, you understand that you should output it. If script's written offhand, you wouldn't create a new variable just to use it at next line, so you write smth like puts( readlines.sort.map{...}.select{...} ) or at least readlines.sort.map{...}.select{...}.tap{|x| puts x} It looks ugly and isn't readable. Thing get even worse when you are writing object info a file: File.open('file.txt','w'){|f| f.puts( readlines.sort.map{...}.select{...} ) } I write such constructions many times a day, just because my scripts are usually used once or twice and I can't waste my time to make this more clear. Instead of such a pasta-code, one can make smth like this: readlines.sort.map{...}.select{...}.puts_to readlines.sort.map{...}.select{...}.puts_to($stderr) readlines.sort.map{...}.select{...}.puts_to('') readlines.sort.map{...}.select{...}.puts_to(filename:'', append:true) Implementation can be smth like this: class Object def puts_to(io_or_filename = $stdout) if io_or_filename.respond_to?(:puts) io_or_filename.puts(self) else case io_or_filename when String File.open(io_or_filename,'w'){|f| f.puts self } when Hash File.open(io_or_filename[:filename],io_or_filename[:append] ? 'a' : 'w'){|f| f.puts self } end end end end Or may be Hash-syntax for append-mode should be written simply as two arguments: obj.puts_to('file.txt', true)
on 2012-09-30 16:41
on 2012-09-30 17:55
Issue #7091 has been updated by drbrain (Eric Hodel).
Status changed from Open to Rejected
=begin
There are several ways to do this just as easily:
Write to $stdout:
puts(*readlines.sort.map{...}.select{...})
Write to $stderr:
$stderr.puts(*readlines.sort.map{...}.select{...})
Write to 'file.txt':
File.write 'file.txt', readlines.sort.map{...}.select{...}.join
Append to 'file.txt':
File.write 'file.txt', readlines.sort.map{...}.select{...}.join, 'a'
=end
----------------------------------------
Feature #7091: Object#puts_to
https://bugs.ruby-lang.org/issues/7091#change-29813
Author: prijutme4ty (Ilya Vorontsov)
Status: Rejected
Priority: Normal
Assignee:
Category:
Target version:
I suggest a new method Object#puts_to(io_or_filename) (or
BasicObject#puts_to)
It's usual that one-two-three-line scripts have big chains like
readlines.sort.map{...}.select{...} and so on and after you wrote such a
monstruous expression to process input, you understand that you should
output it. If script's written offhand, you wouldn't create a new
variable just to use it at next line, so you write smth like
puts( readlines.sort.map{...}.select{...} )
or at least
readlines.sort.map{...}.select{...}.tap{|x| puts x}
It looks ugly and isn't readable. Thing get even worse when you are
writing object info a file:
File.open('file.txt','w'){|f| f.puts(
readlines.sort.map{...}.select{...} ) }
I write such constructions many times a day, just because my scripts are
usually used once or twice and I can't waste my time to make this more
clear.
Instead of such a pasta-code, one can make smth like this:
readlines.sort.map{...}.select{...}.puts_to
readlines.sort.map{...}.select{...}.puts_to($stderr)
readlines.sort.map{...}.select{...}.puts_to('')
readlines.sort.map{...}.select{...}.puts_to(filename:'', append:true)
Implementation can be smth like this:
class Object
def puts_to(io_or_filename = $stdout)
if io_or_filename.respond_to?(:puts)
io_or_filename.puts(self)
else
case io_or_filename
when String
File.open(io_or_filename,'w'){|f| f.puts self }
when Hash
File.open(io_or_filename[:filename],io_or_filename[:append] ?
'a' : 'w'){|f| f.puts self }
end
end
end
end
Or may be Hash-syntax for append-mode should be written simply as two
arguments:
obj.puts_to('file.txt', true)
on 2012-10-01 03:32
Issue #7091 has been updated by nobu (Nobuyoshi Nakada).
=begin
readlines.sort.map{...}.select{...}.display($stderr)
=end
----------------------------------------
Feature #7091: Object#puts_to
https://bugs.ruby-lang.org/issues/7091#change-29815
Author: prijutme4ty (Ilya Vorontsov)
Status: Rejected
Priority: Normal
Assignee:
Category:
Target version:
I suggest a new method Object#puts_to(io_or_filename) (or
BasicObject#puts_to)
It's usual that one-two-three-line scripts have big chains like
readlines.sort.map{...}.select{...} and so on and after you wrote such a
monstruous expression to process input, you understand that you should
output it. If script's written offhand, you wouldn't create a new
variable just to use it at next line, so you write smth like
puts( readlines.sort.map{...}.select{...} )
or at least
readlines.sort.map{...}.select{...}.tap{|x| puts x}
It looks ugly and isn't readable. Thing get even worse when you are
writing object info a file:
File.open('file.txt','w'){|f| f.puts(
readlines.sort.map{...}.select{...} ) }
I write such constructions many times a day, just because my scripts are
usually used once or twice and I can't waste my time to make this more
clear.
Instead of such a pasta-code, one can make smth like this:
readlines.sort.map{...}.select{...}.puts_to
readlines.sort.map{...}.select{...}.puts_to($stderr)
readlines.sort.map{...}.select{...}.puts_to('')
readlines.sort.map{...}.select{...}.puts_to(filename:'', append:true)
Implementation can be smth like this:
class Object
def puts_to(io_or_filename = $stdout)
if io_or_filename.respond_to?(:puts)
io_or_filename.puts(self)
else
case io_or_filename
when String
File.open(io_or_filename,'w'){|f| f.puts self }
when Hash
File.open(io_or_filename[:filename],io_or_filename[:append] ?
'a' : 'w'){|f| f.puts self }
end
end
end
end
Or may be Hash-syntax for append-mode should be written simply as two
arguments:
obj.puts_to('file.txt', true)
on 2012-10-01 11:31
Issue #7091 has been updated by prijutme4ty (Ilya Vorontsov).
Don't you feel that mixing function call and method-chain is ugly? This
was the main reason why I proposed this method, not inability to do
this.
In case that expression is full of curl-braces and so on, additional
level of "brace-deepness" is much worse that additional method in chain.
Compare a real-life example (discreting a matrix):
File.write('matrix.out', File.readlines('matrix.in').map{|line|
line.strip.split.map(&:to_f).map(&:round).join("\t")})
File.readlines('matrix.in').map{|line|
line.strip.split.map(&:to_f).map(&:round).join("\t")}.puts_to('matrix.out')
Both expressions are rather complex, but in the first form main
operations are hidden inside braces of write or puts function. Also here
input and output appear in adjacent expressions. In the second form main
part of calculations is not shaded by output code. Also one can trace
path of data from input file through calculations to output file.
----------------------------------------
Feature #7091: Object#puts_to
https://bugs.ruby-lang.org/issues/7091#change-29818
Author: prijutme4ty (Ilya Vorontsov)
Status: Rejected
Priority: Normal
Assignee:
Category:
Target version:
I suggest a new method Object#puts_to(io_or_filename) (or
BasicObject#puts_to)
It's usual that one-two-three-line scripts have big chains like
readlines.sort.map{...}.select{...} and so on and after you wrote such a
monstruous expression to process input, you understand that you should
output it. If script's written offhand, you wouldn't create a new
variable just to use it at next line, so you write smth like
puts( readlines.sort.map{...}.select{...} )
or at least
readlines.sort.map{...}.select{...}.tap{|x| puts x}
It looks ugly and isn't readable. Thing get even worse when you are
writing object info a file:
File.open('file.txt','w'){|f| f.puts(
readlines.sort.map{...}.select{...} ) }
I write such constructions many times a day, just because my scripts are
usually used once or twice and I can't waste my time to make this more
clear.
Instead of such a pasta-code, one can make smth like this:
readlines.sort.map{...}.select{...}.puts_to
readlines.sort.map{...}.select{...}.puts_to($stderr)
readlines.sort.map{...}.select{...}.puts_to('')
readlines.sort.map{...}.select{...}.puts_to(filename:'', append:true)
Implementation can be smth like this:
class Object
def puts_to(io_or_filename = $stdout)
if io_or_filename.respond_to?(:puts)
io_or_filename.puts(self)
else
case io_or_filename
when String
File.open(io_or_filename,'w'){|f| f.puts self }
when Hash
File.open(io_or_filename[:filename],io_or_filename[:append] ?
'a' : 'w'){|f| f.puts self }
end
end
end
end
Or may be Hash-syntax for append-mode should be written simply as two
arguments:
obj.puts_to('file.txt', true)
on 2012-10-01 11:43
Issue #7091 has been updated by prijutme4ty (Ilya Vorontsov). nobu (Nobuyoshi Nakada) wrote: > =begin > readlines.sort.map{...}.select{...}.display($stderr) > =end Thank you, Nobu. Hadn't seen this before. I wish to have similar syntax for output in file by filename, but this is also good enough. ---------------------------------------- Feature #7091: Object#puts_to https://bugs.ruby-lang.org/issues/7091#change-29820 Author: prijutme4ty (Ilya Vorontsov) Status: Rejected Priority: Normal Assignee: Category: Target version: I suggest a new method Object#puts_to(io_or_filename) (or BasicObject#puts_to) It's usual that one-two-three-line scripts have big chains like readlines.sort.map{...}.select{...} and so on and after you wrote such a monstruous expression to process input, you understand that you should output it. If script's written offhand, you wouldn't create a new variable just to use it at next line, so you write smth like puts( readlines.sort.map{...}.select{...} ) or at least readlines.sort.map{...}.select{...}.tap{|x| puts x} It looks ugly and isn't readable. Thing get even worse when you are writing object info a file: File.open('file.txt','w'){|f| f.puts( readlines.sort.map{...}.select{...} ) } I write such constructions many times a day, just because my scripts are usually used once or twice and I can't waste my time to make this more clear. Instead of such a pasta-code, one can make smth like this: readlines.sort.map{...}.select{...}.puts_to readlines.sort.map{...}.select{...}.puts_to($stderr) readlines.sort.map{...}.select{...}.puts_to('') readlines.sort.map{...}.select{...}.puts_to(filename:'', append:true) Implementation can be smth like this: class Object def puts_to(io_or_filename = $stdout) if io_or_filename.respond_to?(:puts) io_or_filename.puts(self) else case io_or_filename when String File.open(io_or_filename,'w'){|f| f.puts self } when Hash File.open(io_or_filename[:filename],io_or_filename[:append] ? 'a' : 'w'){|f| f.puts self } end end end end Or may be Hash-syntax for append-mode should be written simply as two arguments: obj.puts_to('file.txt', true)
Please log in before posting. Registration is free and takes only a minute.
Existing account
(Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
Log in with Google account | Log in with Yahoo account
No account? Register here.