rindy 0.0.14 → 0.0.15
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/Gemfile.lock +1 -1
- data/README.md +9 -3
- data/rindy.gemspec +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 756cacc3d927ef7e533b6b2c52c70058d18d20c9cdc4d05ae4cf7e3e98c60a30
|
|
4
|
+
data.tar.gz: 11c64d5f3d7d07b2c47c956a8d7180ce44b815cb80f0998db0583378b7ba303b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: db1b79d9f0cc62157395cd480fdacd5df3cdf7ef009dda115d343e56bbcdb2d30115f4ce259af3b019e3d25b348bac4a57c33c3a58fb64e04170f56c2ec6df53
|
|
7
|
+
data.tar.gz: 7fbd5e6f0ed5b103fac91247262a0ed812241cea995972084a56651348598c8ebeb3c6c00bfd295f5d2fe024fc5db532c0fdfb3223e9ade20194ae8f3ca20510
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -15,7 +15,7 @@ Create a new rails application:
|
|
|
15
15
|
Then, add this line to your application's Gemfile:
|
|
16
16
|
|
|
17
17
|
```ruby
|
|
18
|
-
gem 'rindy'
|
|
18
|
+
gem 'rindy'
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
You *must* have rust installed *and* set LIBRARY_PATH:
|
|
@@ -43,9 +43,15 @@ If you check ~/.indy_client/pool and ~/.indy_client/wallet directories, you shou
|
|
|
43
43
|
|
|
44
44
|
## Development
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
First, you *must* have rust installed *and* set LIBRARY_PATH:
|
|
47
47
|
|
|
48
|
-
|
|
48
|
+
$ export LIBRARY_PATH=/your/path/to/indy-sdk/libindy/target/debug/
|
|
49
|
+
|
|
50
|
+
See [these instructions](https://github.com/hyperledger/indy-sdk#installing-the-sdk) to install or build the Indy SDK. Then, clone the repo and execute:
|
|
51
|
+
|
|
52
|
+
$ rake
|
|
53
|
+
$ rspec
|
|
54
|
+
$
|
|
49
55
|
|
|
50
56
|
## Contributing
|
|
51
57
|
|
data/rindy.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'rindy'
|
|
5
|
-
s.version = '0.0.
|
|
5
|
+
s.version = '0.0.15'
|
|
6
6
|
s.authors = ['John Callahan']
|
|
7
7
|
s.summary = "Ruby wrapper for indy-sdk"
|
|
8
8
|
s.files = `git ls-files -z`.split("\x0") - %w(.gitignore)
|
|
@@ -11,6 +11,7 @@ Gem::Specification.new do |s|
|
|
|
11
11
|
s.extensions = %w[extconf.rb]
|
|
12
12
|
s.require_path = 'lib'
|
|
13
13
|
s.licenses = [ 'MIT', 'Apache-2.0' ]
|
|
14
|
+
s.homepage = 'https://github.com/johncallahan/rindy'
|
|
14
15
|
|
|
15
16
|
s.add_dependency 'helix_runtime', '~> 0.7.5'
|
|
16
17
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rindy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.15
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Callahan
|
|
@@ -46,7 +46,7 @@ files:
|
|
|
46
46
|
- spec/rindy_spec.rb
|
|
47
47
|
- spec/spec_helper.rb
|
|
48
48
|
- src/lib.rs
|
|
49
|
-
homepage:
|
|
49
|
+
homepage: https://github.com/johncallahan/rindy
|
|
50
50
|
licenses:
|
|
51
51
|
- MIT
|
|
52
52
|
- Apache-2.0
|