0.0
No release in over a year
Read and write files from remote locations (using the DFS protocol) as well as local.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.1, >= 0.1.6
~> 0.3, >= 0.3.3
 Project Readme

RXFReadWrite example

class Fun
  include RXFReadWriteModule


  def go()
    FileX.write 'dfs://dfs.home/tmp/foo123.txt', 'hey ho!'
  end
  def go2()
    FileX.read 'dfs://dfs.home/tmp/foo123.txt'
  end
end

fun = Fun.new
puts fun.go
puts fun.go2