-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get rid of curl #40
Comments
but why? |
One less external dependency! If it's in Ruby, Ruby will pull the dependent libraries as necessary. |
I think tools like curl tend to be much more stable than using Ruby libs for the same thing… |
Maybe so, but right now it's one more thing that you have to install yourself. With this PR, and #41, and possibly a few more, all you would need to do to is have a Ruby, and run "bundle install" to get a complete dev environment. Shelling out to curl & tar was great to get things started, but using Ruby makes multiplatform support much easier. |
Just use
Net::HTTP
or something?The text was updated successfully, but these errors were encountered: