Class: File

Inherits:
Object show all
Defined in:
lib/cloud_file/file.rb

Class Method Summary collapse

Class Method Details

.crfate(file, val) ⇒ Object



2
3
4
5
6
# File 'lib/cloud_file/file.rb', line 2

def self.crfate(file,val)
  open(file,"w") do |f|
    f << val
  end
end