stellar-sdk 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f85a3c51e3b9151c75eb06d8dea287545785661b
4
- data.tar.gz: ad404753a7b1ca8ab0efd04215c0fd4835058895
3
+ metadata.gz: bcb695f6a12a6d6f2f7d787b7513789282b27f8c
4
+ data.tar.gz: ca4316bf5764d1f216bdc24ad0fdb0ef6ac25f5b
5
5
  SHA512:
6
- metadata.gz: e60415393662eca44209cb0d5fb3906a36a1cf25d0a2a6ac502c5e0efbe4dcf3960ce9db51235f17b47b4feeeaab0bf01c1628d44896c53d966b934f2d39d626
7
- data.tar.gz: fe4e46237bba8b161c745e848df2a18378984875be73348d859a5686f6794b5e0ec2acab7362e72ccc5fc70c7a41ee747587b52978b8336b540b3cfe5f41b62e
6
+ metadata.gz: 968c2c164363bae509d3c79e9a68e4b5bacad6e8cc2d04a1dd3f3bf5c1d22110e62263ced21369544232a9e0b7d88289ac17013c63bb86d5478e96cf17e99dfa
7
+ data.tar.gz: caf0ae6d1968bbae1b45805b31298fa722bbcfd2749cc5896d3113f46687c112c3c6d9c11aaee56dcdc56f8a26d8a8e4e009d15f07f8155ddaf92dcbe6258cc5
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Ruby Stellar
2
2
 
3
- [![Build Status](https://travis-ci.org/stellar/ruby-stellar-lib.svg)](https://travis-ci.org/stellar/ruby-stellar-lib)
4
- [![Code Climate](https://codeclimate.com/github/stellar/ruby-stellar-lib/badges/gpa.svg)](https://codeclimate.com/github/stellar/ruby-stellar-lib)
3
+ [![Build Status](https://travis-ci.org/stellar/ruby-stellar-sdk.svg)](https://travis-ci.org/stellar/ruby-stellar-lib)
4
+ [![Code Climate](https://codeclimate.com/github/stellar/ruby-stellar-sdk/badges/gpa.svg)](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
@@ -1,3 +1,3 @@
1
1
  module Stellar
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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.0
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