The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
New Ruby Project Launched

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Daniel Berger

Posts: 1383
Nickname: djberg96
Registered: Sep, 2004

Daniel Berger is a Ruby Programmer who also dabbles in C and Perl
New Ruby Project Launched Posted: Jan 28, 2005 5:31 AM
Reply to this message Reply

This post originated from an RSS feed registered with Ruby Buzz by Daniel Berger.
Original Post: New Ruby Project Launched
Feed Title: Testing 1,2,3...
Feed URL: http://djberg96.livejournal.com/data/rss
Feed Description: A blog on Ruby and other stuff.
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Daniel Berger
Latest Posts From Testing 1,2,3...

Advertisement
I've launched a new project on RubyForge called Solaris Utils. I've already released the first version of solaris-file, which extends Ruby's File class to handle ACL files on Solaris. Soon, I'll move over the solaris-kstat package from SourceForge.

Here's a quick taste of the ACL interface
require "solaris/file"

file = "somefile.txt"
acl  = "user::rw-,user:nobody:r--,group::r--,group:sys:r--,mask:r--,other:r--"

# Instance Methods
File.open(file){ |fh|
   p fh.trivial?           # was true
   fh.write_acl_text(acl)
   p fh.trivial?           # now false
}

# Class Methods
File.read_acl_text # "user::rw-,user:nobody:r--,group::r--,group:sys:r--,mask:r--,other:r--"

I also plan on adding support for extended file attributes and all the methods associated with them. I haven't settled on the API yet, so it's BETA for now. I dunno if I like the method names.

Read: New Ruby Project Launched

Topic: Ruby 1.8.2 New Features Previous Topic   Next Topic Topic: Rich clients with Rails and XUL

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use