auction-ruby-base 0.1.1 → 0.1.2
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/CHANGELOG.md +9 -9
- data/CONTRIBUTING.md +1 -1
- data/README.md +5 -5
- data/examples/create_account.rb +1 -1
- data/examples/low_level_transaction_post.rb +1 -1
- data/examples/mid_level_transaction_post.rb +1 -1
- data/examples/non_native_payment.rb +1 -1
- data/examples/offer.rb +1 -1
- data/examples/transaction_merge.rb +1 -1
- data/lib/stellar-base.rb +1 -1
- data/lib/stellar/base.rb +1 -1
- data/lib/stellar/base/version.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/tasks/xdr.rake +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: 82fd46519822d45f224a392f35f5e10eb39df058
|
|
4
|
+
data.tar.gz: 014c45ae00340f58dbd785e700d78261aa05cbaa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cfbe9e8ee0c163c846ec9ee56f7cacc9dbc07c58baeccbd8ae2122a4d973610795ed5fcfb042c7e5089e7398b34e60da2ff68bad2bbefe1ec1a2ca9326c0ddb7
|
|
7
|
+
data.tar.gz: e853924a2c115724cddb0be14ade5f4bf9f20f9a5c80c51c6341b2c509ca840fd4a74beb2eb4445eb7253d2feca09ef2c3b4eb67012db98f06001295a43c0abf
|
data/CHANGELOG.md
CHANGED
|
@@ -6,49 +6,49 @@ file. This project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
6
6
|
As this project is pre 1.0, breaking changes may happen for minor version
|
|
7
7
|
bumps. A breaking change will get clearly notified in this log.
|
|
8
8
|
|
|
9
|
-
## [unreleased](https://github.com/stellar/ruby-
|
|
10
|
-
## [0.10.0](https://github.com/stellar/ruby-
|
|
9
|
+
## [unreleased](https://github.com/stellar/ruby-auction-ruby-base/compare/v0.10.0...master)
|
|
10
|
+
## [0.10.0](https://github.com/stellar/ruby-auction-ruby-base/compare/v0.0.0...v0.10.0)
|
|
11
11
|
|
|
12
12
|
- Added memo helpers to `Stellar::Transaction.for_account`, allowing any operation builder (such as `Stellar::Transaction.payment) to provide a custom memo using the `:memo` attribute.
|
|
13
13
|
|
|
14
|
-
## [0.9.0](https://github.com/stellar/ruby-
|
|
14
|
+
## [0.9.0](https://github.com/stellar/ruby-auction-ruby-base/compare/v0.8.0...v0.9.0)
|
|
15
15
|
|
|
16
16
|
### Changed
|
|
17
17
|
- XDR Definitions have been updated to stellar-core commit eed89649c2060b8e9dacffe2cec4e8b258b32416
|
|
18
18
|
|
|
19
|
-
## [0.8.0](https://github.com/stellar/ruby-
|
|
19
|
+
## [0.8.0](https://github.com/stellar/ruby-auction-ruby-base/compare/v0.7.0...v0.8.0)
|
|
20
20
|
|
|
21
21
|
### Changed
|
|
22
22
|
- BREAKING CHANGE: The default network for this library is now the stellar test network.
|
|
23
23
|
To enable this library for the production network use `Stellar.default_network = Stellar::Networks::PUBLIC`
|
|
24
24
|
at the head of your script or in your configuration function.
|
|
25
25
|
|
|
26
|
-
## [0.7.0](https://github.com/stellar/ruby-
|
|
26
|
+
## [0.7.0](https://github.com/stellar/ruby-auction-ruby-base/compare/v0.6.1...v0.7.0)
|
|
27
27
|
|
|
28
28
|
### Changed
|
|
29
29
|
|
|
30
30
|
- Bump xdr dependency to 1.0.0
|
|
31
31
|
|
|
32
|
-
## [0.6.1](https://github.com/stellar/ruby-
|
|
32
|
+
## [0.6.1](https://github.com/stellar/ruby-auction-ruby-base/compare/v0.6.0...v0.6.1)
|
|
33
33
|
|
|
34
34
|
### Changed
|
|
35
35
|
|
|
36
36
|
- Update default fee for transactions to new minimum of 100 stroops
|
|
37
37
|
|
|
38
38
|
|
|
39
|
-
## [0.6.0](https://github.com/stellar/ruby-
|
|
39
|
+
## [0.6.0](https://github.com/stellar/ruby-auction-ruby-base/compare/v0.5.0...v0.6.0)
|
|
40
40
|
|
|
41
41
|
### Changed
|
|
42
42
|
|
|
43
43
|
- Update to latest xdr (stellar-core commit ad22bccafbbc14a358f05a989f7b95714dc9d4c6)
|
|
44
44
|
|
|
45
|
-
## [0.5.0](https://github.com/stellar/ruby-
|
|
45
|
+
## [0.5.0](https://github.com/stellar/ruby-auction-ruby-base/compare/v0.4.0...v0.5.0)
|
|
46
46
|
|
|
47
47
|
### Changed
|
|
48
48
|
|
|
49
49
|
- Update to latest xdr
|
|
50
50
|
|
|
51
|
-
## [0.4.0](https://github.com/stellar/ruby-
|
|
51
|
+
## [0.4.0](https://github.com/stellar/ruby-auction-ruby-base/compare/v0.3.0...v0.4.0)
|
|
52
52
|
|
|
53
53
|
### Changed
|
|
54
54
|
- BREAKING CHANGE: "Amounts", that is, input parameters that represent a
|
data/CONTRIBUTING.md
CHANGED
|
@@ -34,7 +34,7 @@ business days. We may suggest some changes or improvements or alternatives.
|
|
|
34
34
|
|
|
35
35
|
# Additional Resources
|
|
36
36
|
|
|
37
|
-
* [Bug tracker (Github)](https://github.com/stellar/ruby-
|
|
37
|
+
* [Bug tracker (Github)](https://github.com/stellar/ruby-auction-ruby-base/issues)
|
|
38
38
|
* <a href="https://docs.google.com/forms/d/1g7EF6PERciwn7zfmfke5Sir2n10yddGGSXyZsq98tVY/viewform?usp=send_form">Contributor License Agreement</a>
|
|
39
39
|
* #stellar-dev IRC channel on freenode.org and Slack chat on stellar-public.slack.com
|
|
40
40
|
|
data/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# Stellar::Base
|
|
2
2
|
|
|
3
|
-
[](https://travis-ci.org/stellar/ruby-auction-ruby-base)
|
|
4
|
+
[](https://codeclimate.com/github/stellar/ruby-auction-ruby-base)
|
|
5
5
|
|
|
6
|
-
The
|
|
6
|
+
The auction-ruby-base library is the lowest-level stellar helper library. It consists of classes
|
|
7
7
|
to read, write, hash, and sign the xdr structures that are used in stellard.
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
@@ -11,7 +11,7 @@ to read, write, hash, and sign the xdr structures that are used in stellard.
|
|
|
11
11
|
Add this line to your application's Gemfile:
|
|
12
12
|
|
|
13
13
|
```ruby
|
|
14
|
-
gem '
|
|
14
|
+
gem 'auction-ruby-base'
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
And then execute:
|
|
@@ -20,7 +20,7 @@ And then execute:
|
|
|
20
20
|
|
|
21
21
|
Or install it yourself as:
|
|
22
22
|
|
|
23
|
-
$ gem install
|
|
23
|
+
$ gem install auction-ruby-base
|
|
24
24
|
|
|
25
25
|
Also requires libsodium. Installable via `brew install libsodium` on OS X.
|
|
26
26
|
|
data/examples/create_account.rb
CHANGED
data/examples/offer.rb
CHANGED
data/lib/stellar-base.rb
CHANGED
data/lib/stellar/base.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
require "
|
|
1
|
+
require "auction-ruby-base"
|
data/lib/stellar/base/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
data/tasks/xdr.rake
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: auction-ruby-base
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hlib Naumenko
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-01-
|
|
11
|
+
date: 2016-01-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: xdr
|