/phalapi-sdk-ruby

Primary LanguageRubyMIT LicenseMIT

PhalApi SDK for Ruby

PhalApi开源接口框架SDK包,更多请访问:http://www.phalapi.net/

支持的Ruby版本:

  • Ruby 2.3.x

安装

在您 Ruby 应用程序的Gemfile文件中,添加如下一行代码:

gem 'phalapi', '>= 1.3.4'

然后,在应用程序所在的目录下,可以运行bundle安装依赖包:

$ bundle

或者,可以使用 Ruby 的包管理器gem进行安装:

$ gem install phalapi

使用

require 'phalapi'

a_client = PhalApi::Client.create.withHost('http://demo.phalapi.net')
a_response = a_client.withService('Default.Index').withParams('username', 'dogstar').withTimeout(3000).request()

puts a_response.ret, a_response.data, a_response.msg

# => 200
# => {"title"=>"Hello World!", "content"=>"dogstar您好,欢迎使用PhalApi!", "version"=>"1.2.1", "time"=>1445741092}
# =>

更多请参考:SDK包(Ruby版)

贡献代码

    1. Fork
    1. 创建您的特性分支
    1. 提交您的改动
    1. 将您的修改记录提交到远程 git 仓库
    1. 发起 Pull Request

许可证

Copyright (c) 2015-2016 PhalApi All Rights Reserved.

基于 MIT 协议发布: MIT License