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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +9 -3
  4. data/rindy.gemspec +2 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 71a58bddf402f61ff1bd0e02911952dd927a7ff4ed9c020d09943b45363e482c
4
- data.tar.gz: 0cafd6f0ce1c1a7cc9678337155286fdb09abb4351f1d3b25829bd2e4a0f1676
3
+ metadata.gz: 756cacc3d927ef7e533b6b2c52c70058d18d20c9cdc4d05ae4cf7e3e98c60a30
4
+ data.tar.gz: 11c64d5f3d7d07b2c47c956a8d7180ce44b815cb80f0998db0583378b7ba303b
5
5
  SHA512:
6
- metadata.gz: 23402e798cb73b9064229482e8c6626efcb5dad49bba8b8f84366b49829ffc47604fc081ae660a1bb20df584c2650bda342efcbcc81c5f2605881e72dd476d6d
7
- data.tar.gz: 3162ad7669acf44b804f263da0bb6def8f544b00aceaa037daa119ed398c9da44ef2b313c2fac8e2a366e40caa0908069ca0af062fc2ad042a638259f64164b6
6
+ metadata.gz: db1b79d9f0cc62157395cd480fdacd5df3cdf7ef009dda115d343e56bbcdb2d30115f4ce259af3b019e3d25b348bac4a57c33c3a58fb64e04170f56c2ec6df53
7
+ data.tar.gz: 7fbd5e6f0ed5b103fac91247262a0ed812241cea995972084a56651348598c8ebeb3c6c00bfd295f5d2fe024fc5db532c0fdfb3223e9ade20194ae8f3ca20510
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rindy (0.0.14)
4
+ rindy (0.0.15)
5
5
  helix_runtime (~> 0.7.5)
6
6
 
7
7
  GEM
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', :github => "johncallahan/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
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
46
+ First, you *must* have rust installed *and* set LIBRARY_PATH:
47
47
 
48
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). (This gem not yet available on rubygems)
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
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'rindy'
5
- s.version = '0.0.14'
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.14
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