magic-admin 0.1.2 → 0.1.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 638cfcae85becbb634195d4662fcae184398d731d31c7a3aef2567375b3e4167
4
- data.tar.gz: afa110a04f413841b9b6ba42a1e279e6277a7e51be1060cb64fd6fd43b48e1a4
3
+ metadata.gz: b2721444247603f2b017dbb7fe6bbd9c69bf43c2599b7387a507517ea2ff2a1e
4
+ data.tar.gz: 60f188da5c724bd944cf67b137ebb2ff207b383eb4283001b81b079fa2416063
5
5
  SHA512:
6
- metadata.gz: d4c8fa130b49e13be60fbecfecd824922a64636add229bd165566d01d9820bf99937cf3b16277964516d9c157824aebb09ad2b883e4e91ddf540d47dc5cbe4f2
7
- data.tar.gz: 7478a88f76da822adc86b396508ebac1fccb703a61eff498d14427026e7587b2c9937c2eb387d99d56f141bf1c6e5a074725b2782580fa83f3539fdc4aaaa925
6
+ metadata.gz: c7559b2eb31df236c76955de14797d72b31180a92d94e29c7a6c2af116274376427f1bca086ef1785b8c8eb1180d47506234cee0e2a7eec13293fc9e77c7a4df
7
+ data.tar.gz: 1b46344396e84cbdc37a2d3a976ee7e6131bc4e2a96513b272f5034f7879001fb9bf303a6368d37cfaf1d66d86d638e9e9bc04966c7e0f9450f78bc7baf115e1
data/CHANGELOG.md CHANGED
@@ -16,8 +16,16 @@
16
16
 
17
17
  - <PR-#ISSUE> ...
18
18
 
19
+ ## `0.1.3` - 03/29/2022
20
+
21
+ #### Changed
22
+
23
+ - <PR-#12> https://github.com/magiclabs/magic-admin-ruby/issues/7
24
+ - <PR-#12> https://github.com/magiclabs/magic-admin-ruby/issues/8
25
+ - <PR-#12> https://github.com/magiclabs/magic-admin-ruby/issues/11
26
+
19
27
  ## `0.1.2` - 10/30/2020
20
28
 
21
29
  #### Changed
22
30
 
23
- - <PR-#5>: https://github.com/magiclabs/magic-admin-ruby/issues/5
31
+ - <PR-#5>: https://github.com/magiclabs/magic-admin-ruby/issues/5
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Magic Admin Ruby SDK
2
2
 
3
- The Magic Admin Ruby SDK provides convenient ways for developers to interact with Magic API endpoints and an array of utilities to handle [DID Token](https://docs.magic.link/tutorials/decentralized-id).
3
+ The Magic Admin Ruby SDK provides convenient ways for developers to interact with Magic API endpoints and an array of utilities to handle [DID Token](https://magic.link/docs/introduction/decentralized-id).
4
4
 
5
5
  ## Table of Contents
6
6
 
@@ -10,7 +10,7 @@ The Magic Admin Ruby SDK provides convenient ways for developers to interact wit
10
10
  * [License](#license)
11
11
 
12
12
  ## Documentation
13
- See the [Magic doc](https://docs.magic.link/admin-sdk/ruby)!
13
+ See the [Magic doc](https://magic.link/docs/api-reference/server-side-sdks/ruby)!
14
14
 
15
15
  ## Installation
16
16
  Add this line to your application's Gemfile:
@@ -97,11 +97,11 @@ module MagicAdmin
97
97
  end
98
98
 
99
99
  def personal_recover(claim, proof)
100
- Eth::Key.personal_recover(JSON.dump(claim), proof)
100
+ Eth::Signature.personal_recover(JSON.dump(claim), proof)
101
101
  end
102
102
 
103
103
  def rec_pub_address(claim, proof)
104
- Eth::Utils.public_key_to_address personal_recover(claim, proof)
104
+ Eth::Util.public_key_to_address personal_recover(claim, proof)
105
105
  end
106
106
 
107
107
  def claim_fields
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MagicAdmin
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.3"
5
5
  end
data/magic-admin.gemspec CHANGED
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
21
21
  s.metadata = {
22
22
  }
23
23
 
24
- s.add_dependency "eth", "~> 0.4"
24
+ s.add_dependency "eth", "~> 0.5"
25
25
  s.add_development_dependency "byebug", "~> 11.0"
26
26
  s.add_development_dependency "rspec", "~> 3.9"
27
27
  s.add_development_dependency "rubocop", "~> 0.80"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: magic-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Magic Labs Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-30 00:00:00.000000000 Z
11
+ date: 2022-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: eth
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.4'
19
+ version: '0.5'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0.4'
26
+ version: '0.5'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: byebug
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -153,7 +153,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
153
153
  - !ruby/object:Gem::Version
154
154
  version: '0'
155
155
  requirements: []
156
- rubygems_version: 3.1.4
156
+ rubygems_version: 3.2.15
157
157
  signing_key:
158
158
  specification_version: 4
159
159
  summary: Ruby bindings for the Magic Admin API