authparty-connect 0.0.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 671b9062479ec051ee1cf589597b74fd76dfd2cb
4
+ data.tar.gz: 92bf245d29170c41ec54f3c0d2fa3ef01f1344f0
5
+ SHA512:
6
+ metadata.gz: 1d14480e9cc1c6acc0e96835050386e6a2ec78342b383cf75d583b24d5b6ad6c7c194ad74a53efcd031f744b5f49084d95f369b63e4d1d0ca6a5a1f1f840e6ed
7
+ data.tar.gz: b2d772615de300c4b0ade809e8ccd2e73c329466a643446a3096d6a2ad2e33059335698da889b512c333bab65db905968946b25289d3fc26404619c68711cee3
@@ -0,0 +1,7 @@
1
+ class AuthpartyConnect
2
+ def self.initialize(api_key, api_secret)
3
+ connection = Connection.new(api_key, api_secret, host)
4
+ end
5
+
6
+ require 'authparty-connect/connection.rb'
7
+ end
@@ -0,0 +1,14 @@
1
+ class AuthpartyConnect::Connection
2
+ def initialize(api_key, api_secret, host)
3
+ @code = '200'
4
+ end
5
+
6
+ def connect!
7
+ puts 'Connecting to Authparty network....'
8
+ result()
9
+ end
10
+
11
+ def result
12
+ puts 'Connection Resulted in: ' + @code
13
+ end
14
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: authparty-connect
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Matthew Reichardt
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-11-14 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email: matthewjames3@protonmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/authparty-connect.rb
20
+ - lib/authparty-connect/connection.rb
21
+ homepage: http://authparty.io
22
+ licenses:
23
+ - MIT
24
+ metadata: {}
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubyforge_project:
41
+ rubygems_version: 2.6.7
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: Easily add blockchain-based authorization and identity management to your
45
+ service.
46
+ test_files: []