ubox 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +10 -0
- data/lib/ubox.rb +5 -0
- data/lib/ubox/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2d3034656cda531b6f4612e4410d723b5f4b17b3
|
|
4
|
+
data.tar.gz: 3aceab59f46421d89ffbdd03c4f3c8e55eaa55da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9d1027269e8dda1a74f2b2cd0a7db8dffeb4df8faa561af6dde1549cfbf5f9faab6516352bb235e1419c707a3f2270475292d305b877a3edbd202bf4b8279caf
|
|
7
|
+
data.tar.gz: 6e23126ef5316bb974e18dde79eb638c291c8be57d8c4e1948b202609253f35b413a1cde7fff65e5506be28f94f964872e59df2da61902edbc216cdd9685da01
|
data/README.md
CHANGED
|
@@ -123,6 +123,16 @@ status = Ubox.trade_order_status(tran_id: detail['body']['tran_id'])
|
|
|
123
123
|
}
|
|
124
124
|
```
|
|
125
125
|
|
|
126
|
+
### searchVmList 搜索售货机接口
|
|
127
|
+
|
|
128
|
+
```ruby
|
|
129
|
+
list = Ubox.search_vm_list(keyword:'北京香颂')
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
```json
|
|
133
|
+
|
|
134
|
+
```
|
|
135
|
+
|
|
126
136
|
## Development
|
|
127
137
|
|
|
128
138
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/lib/ubox.rb
CHANGED
data/lib/ubox/version.rb
CHANGED