Project

purvey

0.01
No commit activity in last 3 years
No release in over 3 years
Purvey is an in-place ftp server
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.12.0

Runtime

~> 0.6.0
 Project Readme

Quickftp

Quickftp is a command line application that allows to quickly start an ftp server without worrying about configuration. This makes it a handy tool to transfer files easily. Although the server is stable, it's not intended to be used for public servers. This gem is based on the ftpd gem by Wayne Conrad, so you can find more information about reliability and the protocol internals in the gem documentation.

Installation

gem install quickftp

Usage

To simply start the server at any available port serving the files from the current directory, run:

quickftp

Options

  • -h HOST: The interface where the server should start. When not specified, the server will start on localhost.
  • -p PORT: The port where the server should start. When not specified, a random available port will be chosen.

Examples

# start the server in localhost, under port 3002 and files from the current directory:
quickftp -p 3002

# start the server in 192.168.1.1:9000 and serve files from /tmp/dir:
quickftp /tmp/dir -h 192.168.1.1 -p 9000

Contributions and credits

  • This project is based on the ftpd gem by Wayne Conrad.
  • If you want to contribute to this project, just fork it and create a pull request. Also, feel free to report issues on the issues section.