stellar-sdk 0.1.0 → 0.1.1
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 +5 -5
- data/lib/{stellar.rb → stellar-sdk.rb} +0 -0
- data/lib/stellar/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bcb695f6a12a6d6f2f7d787b7513789282b27f8c
|
|
4
|
+
data.tar.gz: ca4316bf5764d1f216bdc24ad0fdb0ef6ac25f5b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 968c2c164363bae509d3c79e9a68e4b5bacad6e8cc2d04a1dd3f3bf5c1d22110e62263ced21369544232a9e0b7d88289ac17013c63bb86d5478e96cf17e99dfa
|
|
7
|
+
data.tar.gz: caf0ae6d1968bbae1b45805b31298fa722bbcfd2749cc5896d3113f46687c112c3c6d9c11aaee56dcdc56f8a26d8a8e4e009d15f07f8155ddaf92dcbe6258cc5
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Ruby Stellar
|
|
2
2
|
|
|
3
|
-
[](https://travis-ci.org/stellar/ruby-stellar-lib)
|
|
4
|
+
[](https://codeclimate.com/github/stellar/ruby-stellar-sdk)
|
|
5
5
|
|
|
6
6
|
*STATUS: this library is very early and incomplete. The examples provided do not work, yet*
|
|
7
7
|
|
|
@@ -12,7 +12,7 @@ This library helps you to integrate your application into the [Stellar network](
|
|
|
12
12
|
Add this line to your application's Gemfile:
|
|
13
13
|
|
|
14
14
|
```ruby
|
|
15
|
-
gem 'stellar'
|
|
15
|
+
gem 'stellar-sdk'
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
And then execute:
|
|
@@ -21,7 +21,7 @@ And then execute:
|
|
|
21
21
|
|
|
22
22
|
Or install it yourself as:
|
|
23
23
|
|
|
24
|
-
$ gem install stellar
|
|
24
|
+
$ gem install stellar-sdk
|
|
25
25
|
|
|
26
26
|
Also requires libsodium. Installable via `brew install libsodium` on OS X.
|
|
27
27
|
|
|
@@ -32,7 +32,7 @@ See [examples](examples).
|
|
|
32
32
|
A simple payment from the root account to some random accounts
|
|
33
33
|
|
|
34
34
|
```ruby
|
|
35
|
-
require 'stellar'
|
|
35
|
+
require 'stellar-sdk'
|
|
36
36
|
|
|
37
37
|
account = Stellar::Account.master
|
|
38
38
|
client = Stellar::Client.default_testnet()
|
|
File without changes
|
data/lib/stellar/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stellar-sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Scott Fleckenstein
|
|
@@ -186,7 +186,7 @@ files:
|
|
|
186
186
|
- examples/04_setting_trust.rb
|
|
187
187
|
- examples/05_fiat_payment.rb
|
|
188
188
|
- examples/fund_testnet_friendbot.rb
|
|
189
|
-
- lib/stellar.rb
|
|
189
|
+
- lib/stellar-sdk.rb
|
|
190
190
|
- lib/stellar/account.rb
|
|
191
191
|
- lib/stellar/amount.rb
|
|
192
192
|
- lib/stellar/client.rb
|