scmuser created the topic: Add each array element to the lines of a file in ruby
Add each array element to the lines of a file in ruby
Either use Array#each to iterate over your array and call IO#puts to write each element to the file (puts adds a record separator, typically a newline character):
[code language=”css”]
File.open(“test.txt”, “w+”) do |f|
a.each { |element| f.puts(element) }
end
[/code]
Or pass the whole array to puts:
[code language=”css”]
File.open(“test.txt”, “w+”) do |f|
f.puts(a)
end
[/code]
Source –http://stackoverflow.com/questions/18900474/add-each-array-element-to-the-lines-of-a-file-in-ruby
DevOps Architect - Mentor - Coach - Trainer at
Cotocus Email - DevOps@RajeshKumar.xyz
CV - www.RajeshKumar.xyz
Linkedin - https://www.linkedin.com/in/rajeshkumarin/
Total, Over 15 years of extensive experience working with more than 8 software MNCs for software development/maintenance and production environments involved in continuous improvement and automating entire life cycle using latest devops tools and techniques from design and architecture, through implementation, deployment, and successful operations. Also, helping more than 70 software organizations globally, providing coaching, mentoring and consulting in devops, CICD, cloud, containers and operations.
I help software organization to improve a quality of the software, reducing the software development/operational cost and immediate feedback/monitoring. Have in-depth working experience in following domains with real project implementation.
- Test Driven DevOps Approach
- Continuous Integration
- Continuous Delivery
- Continuous Deployment
- Continuous Inspection
- Technical Debt Reduction
- Containerization/Micro Services Using Kubernetes & Docker
- Cloud Migration using AWS
- Production Monitoring & Postmortem
Latest posts by Rajesh Kumar
(see all)