README.md in Titania-0.0.5 vs README.md in Titania-0.0.6
- old
+ new
@@ -16,10 +16,26 @@
$ gem install Titania
## Usage
-TODO: Write usage instructions here
+<pre>
+# Connection
+con = Titania::Connection.new(HOST,USERNAME,PASSWORD)
+con.connect
+
+con.get_list(PATH) # Get file list - Return array
+con.current_dir # Get current dir
+con.change_dir(PATH) # Change current dir
+con.delete_file(FILE_PATH, FILE_NAME) # Delete file
+con.create_dir(DIR_PATH, DIR_NAME) # Create dir
+con.help(arg) # Get Help
+con.change_name(CURRENT_NAME,NEW_NAME) # Change file or directory name
+con.remove_dir(REMOVE_DIR) # Remove dir
+con.file_size(FILE_NAME) # Get file size
+con.connection_status # Get connection status
+con.close # Close connection
+</pre>
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)