Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meltingice/RubyDrop
A roll your own Dropbox-like clone written in Ruby.
https://github.com/meltingice/RubyDrop
Last synced: about 19 hours ago
JSON representation
A roll your own Dropbox-like clone written in Ruby.
- Host: GitHub
- URL: https://github.com/meltingice/RubyDrop
- Owner: meltingice
- License: bsd-3-clause
- Created: 2011-05-20T03:12:50.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2015-05-12T04:11:11.000Z (over 9 years ago)
- Last Synced: 2024-10-31T13:02:25.259Z (7 days ago)
- Language: Ruby
- Homepage:
- Size: 171 KB
- Stars: 127
- Watchers: 8
- Forks: 16
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- my-awesome-starred - meltingice/RubyDrop - A roll your own Dropbox-like clone written in Ruby. (Ruby)
README
RubyDrop
RubyDrop is my first ever Ruby project that aims to be an open-source, roll-your-own, Dropbox clone using Git as the backend. There's still a lot of details to work out, and the code may be a little messy, so you'll have to bear with me (it's a process).
Prerequisites
* RubyGems
* Grit
* Ruby 1.9+ (need require_relative function)How to Run
You can start RubyDrop by simply running:
./RubyDrop &By default, the RubyDrop folder that it monitors is created (if it doesn't exist already) at ~/RubyDrop. To change this path, simply edit config.yml. It also initializes a Git repository in the folder automatically, if it doesn't already exist.
Handling Remote File Syncing and Tracking
After much deliberation, I have decided to go with Git for handling file tracking and remote file syncing. We'll see how well this pans out...
Currently, you must manually create the git repo on your remote server. This will be automated as soon as I can write RubyDrop-Server. If you are new to Git, this is how you do it (assuming you are SSH'd into your remote server):
First, you will probably want to make a new user for RubyDrop:
adduser rubydropThen, make it possible for RubyDrop to make a passwordless SSH connection to the server:
["Shortest passwordless ssh tutorial, ever"](http://blogs.translucentcode.org/mick/archives/000230.html)
Finally, you will need to make the repository folder on the remote server (login to the remote server the newly created 'rubydrop' user):
cd ~/
git init RubyDrop.git --bareThat's it! Yes, I'm aware that was a really rough guide.
Controlling RubyDrop
RubyDrop has a TCP interface that you can use to communicate with it while its running. The simplest and easiest way to do so is by using telnet.Here's an example that halts the RubyDrop daemon (by sending 'stop'):
telnet localhost 11311
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Thu Nov 25 03:23:48 2010
Welcome to RubyDrop
stop
RubyDrop daemon halting!
Connection closed by foreign host.TCP Interface Commands
* config_get [name]
* Retrieves the value from the RubyDrop config specified by [name]
* stop
* Halts the daemon
* quit
* Ends the TCP session, but leaves the daemon and TCP server running