Project

nx-http

0.0
No commit activity in last 3 years
No release in over 3 years
Http for ruby gem.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.14
~> 12.3, >= 12.3.3
 Project Readme

nx-http

Http for ruby gem.

installation

# from gem
gem 'nx-http'
# from git
gem 'nx-http', git: 'git@github.com:afeiship/nx-http.git'

usage

Nx::Http::request

## ContentType:
Nx::ContentType.constants
# [:JSON, :URLENCODED, :MULTIPART]

## DataTransform
Nx::DataTransform.multipart(name:'fei', age:100)
# [[:name, "fei"], [:age, 100]]
Nx::DataTransform.urlencoded(name:'fei', age:100)
# "name=fei&age=100"
Nx::DataTransform.json(name:'fei', age:100)
# "{\"name\":\"fei\",\"age\":100}"

build/publish

# build
gem build nx-http.gemspec

# publish
gem push nx-http-0.1.0.gem

resources