curlify

The gem convert ruby requests(net/http) into curl command.

MIT License

Downloads
1.9K
Stars
11

Bot releases are hidden (Show)

curlify - v1.0.2 Latest Release

Published by marcuxyz 6 months ago

What's Changed

Full Changelog: https://github.com/marcuxyz/curlify/compare/1.0.1...v1.0.2

curlify - 🐛 V1.0.1 - Fixes generates curl command

Published by marcuxyz about 1 year ago

This version fixes the method that generates curl command.

🔥 changelog

  • add support for POST, PUT, and DELETE requests in curlify gem
  • wrap request body in single quotes to handle special characters properly
  • bump version to 1.0.1

🗂️ Commits

  • 9fa55d40e9d46177d0b4459b2b06045973b77b28:
  • 🔧 fix(curlify_spec.rb): fix indentation and formatting issues in curlify_spec.rb
  • ✨ feat(curlify_spec.rb): refactor tests to use shared response variable for better readability and maintainability
  • 🐛 fix(curlify.rb): wrap request body in single quotes to handle special characters properly
  • ✨ feat(curlify_spec.rb): add support for POST, PUT, and DELETE requests in curlify gem
  • 📝 docs(README.md): update usage example to include POST request and response output
  • 🔧 chore(curlify.gemspec): bump version to 1.0.1
curlify - ✨ V1.0.0 - Released

Published by marcuxyz about 1 year ago

The Curlify has been released and now you can convert the requests to curl command.

Changelog

  • You can use the to_curl to convert to requests on curl command.

Commits

  • b87b97082feccdedacdee33bbc6cfb64648f7349:

📝 chore(.gitignore): add .gem files to the gitignore
📝 chore(LICENSE): add MIT License
📝 chore(README.md): add initial README content
📝 chore(curlify.gemspec): add gemspec file for curlify gem
📝 chore(spec/curlify_spec.rb): add initial spec file for curlify gem

  • 41e5f4b9115abb3ca7e7134bb4ffceeb53c1ab82:

📝 chore: add .rspec file to project root directory
📝 chore: add .rubocop.yml file to project root directory
📝 chore: add Gemfile to project root directory
📝 feat: add Curlify class to lib/curlify.rb
📝 feat: add Curlify spec to spec/curlify_spec.rb
📝 chore: add spec_helper.rb to spec directory