redox-client 0.0.0.pre.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: cc2920cfcaf61217ebd83d4d252b9a78a2a182124d40fcdf390555584599d2c5
4
+ data.tar.gz: 6afc487c8b22dab175ea6f92c3b22161c8cce51c316aa86249efb865a0343029
5
+ SHA512:
6
+ metadata.gz: d2d1a6488c76791aa5bc1b78208758ed735abd761a90a38a6bccbc356d2559538b9b3b312b5294fbbe0a6171e533b6a5a7383e3099aa543770e8ca7c11c2db10
7
+ data.tar.gz: cb19077d938e6e75112e433d5b1832083d4c2be54dd8bf8643ae13e8f3921788b57ad71ae5d6cca214db09dbcd37655ff565a62ff0ace7c606e5cf372cd25f03
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
@@ -0,0 +1,66 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ redox-client (0.0.0.pre.0)
5
+ faraday (~> 1.0, >= 1.0.1)
6
+ hashie (~> 4.1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ ast (2.4.1)
12
+ diff-lcs (1.4.4)
13
+ faraday (1.0.1)
14
+ multipart-post (>= 1.2, < 3)
15
+ hashie (4.1.0)
16
+ multipart-post (2.1.1)
17
+ parallel (1.19.2)
18
+ parser (2.7.1.4)
19
+ ast (~> 2.4.1)
20
+ rainbow (3.0.0)
21
+ rake (12.3.3)
22
+ regexp_parser (1.7.1)
23
+ rexml (3.2.4)
24
+ rspec (3.9.0)
25
+ rspec-core (~> 3.9.0)
26
+ rspec-expectations (~> 3.9.0)
27
+ rspec-mocks (~> 3.9.0)
28
+ rspec-core (3.9.2)
29
+ rspec-support (~> 3.9.3)
30
+ rspec-expectations (3.9.2)
31
+ diff-lcs (>= 1.2.0, < 2.0)
32
+ rspec-support (~> 3.9.0)
33
+ rspec-mocks (3.9.1)
34
+ diff-lcs (>= 1.2.0, < 2.0)
35
+ rspec-support (~> 3.9.0)
36
+ rspec-support (3.9.3)
37
+ rubocop (0.85.1)
38
+ parallel (~> 1.10)
39
+ parser (>= 2.7.0.1)
40
+ rainbow (>= 2.2.2, < 4.0)
41
+ regexp_parser (>= 1.7)
42
+ rexml
43
+ rubocop-ast (>= 0.0.3)
44
+ ruby-progressbar (~> 1.7)
45
+ unicode-display_width (>= 1.4.0, < 2.0)
46
+ rubocop-ast (0.3.0)
47
+ parser (>= 2.7.1.4)
48
+ rubocop-performance (1.6.1)
49
+ rubocop (>= 0.71.0)
50
+ ruby-progressbar (1.10.1)
51
+ standard (0.4.7)
52
+ rubocop (~> 0.85.0)
53
+ rubocop-performance (~> 1.6.0)
54
+ unicode-display_width (1.7.0)
55
+
56
+ PLATFORMS
57
+ ruby
58
+
59
+ DEPENDENCIES
60
+ rake (~> 12.0)
61
+ redox-client!
62
+ rspec (~> 3.9)
63
+ standard (~> 0.4.7)
64
+
65
+ BUNDLED WITH
66
+ 2.1.4
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Patient Discovery Solutions, Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,15 @@
1
+ # Redox::Client
2
+
3
+ Ruby gem that makes it easy to consume Redox JSON APIs.
4
+
5
+ *Note: This is pre-release software under active development and should be considered unstable until version 1.0.0*
6
+
7
+ ## Installation
8
+
9
+ ## Usage
10
+
11
+ ## Development
12
+
13
+ ## Contributing
14
+
15
+ ## License
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,8 @@
1
+ require "redox/client/version"
2
+
3
+ module Redox
4
+ module Client
5
+ class Error < StandardError; end
6
+ # Your code goes here...
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ module Redox
2
+ module Client
3
+ VERSION = '0.0.0-0'
4
+ end
5
+ end
@@ -0,0 +1,27 @@
1
+ require_relative "lib/redox/client/version"
2
+
3
+ Gem::Specification.new do |gem|
4
+ gem.name = "redox-client"
5
+ gem.version = Redox::Client::VERSION
6
+ gem.homepage = "https://github.com/patient-discovery/redox-client"
7
+ gem.authors = ["Michael Keirnan"]
8
+ gem.email = ["mike@patientdiscovery.com"]
9
+
10
+ gem.summary = "Ruby library for consuming Redox JSON APIs"
11
+ gem.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
12
+ gem.metadata["source_code_uri"] = gem.homepage
13
+ gem.metadata["changelog_uri"] = "#{gem.homepage}/CHANGELOG.md"
14
+
15
+ gem.license = "MIT"
16
+ gem.files = Dir.chdir(File.expand_path(__dir__)) do
17
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{(^spec|^\.)}) }
18
+ end
19
+ gem.require_paths = ["lib"]
20
+
21
+ gem.add_development_dependency "rake", "~> 12.0"
22
+ gem.add_development_dependency "rspec", "~> 3.9"
23
+ gem.add_development_dependency "standard", "~> 0.4.7"
24
+
25
+ gem.add_runtime_dependency "faraday", "~> 1.0", ">= 1.0.1"
26
+ gem.add_runtime_dependency "hashie", "~> 4.1"
27
+ end
metadata ADDED
@@ -0,0 +1,129 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: redox-client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0.pre.0
5
+ platform: ruby
6
+ authors:
7
+ - Michael Keirnan
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-08-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '12.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '12.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '3.9'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '3.9'
41
+ - !ruby/object:Gem::Dependency
42
+ name: standard
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.4.7
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.4.7
55
+ - !ruby/object:Gem::Dependency
56
+ name: faraday
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.0'
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: 1.0.1
65
+ type: :runtime
66
+ prerelease: false
67
+ version_requirements: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - "~>"
70
+ - !ruby/object:Gem::Version
71
+ version: '1.0'
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: 1.0.1
75
+ - !ruby/object:Gem::Dependency
76
+ name: hashie
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: '4.1'
82
+ type: :runtime
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - "~>"
87
+ - !ruby/object:Gem::Version
88
+ version: '4.1'
89
+ description:
90
+ email:
91
+ - mike@patientdiscovery.com
92
+ executables: []
93
+ extensions: []
94
+ extra_rdoc_files: []
95
+ files:
96
+ - Gemfile
97
+ - Gemfile.lock
98
+ - LICENSE
99
+ - README.md
100
+ - Rakefile
101
+ - lib/redox/client.rb
102
+ - lib/redox/client/version.rb
103
+ - redox-client.gemspec
104
+ homepage: https://github.com/patient-discovery/redox-client
105
+ licenses:
106
+ - MIT
107
+ metadata:
108
+ source_code_uri: https://github.com/patient-discovery/redox-client
109
+ changelog_uri: https://github.com/patient-discovery/redox-client/CHANGELOG.md
110
+ post_install_message:
111
+ rdoc_options: []
112
+ require_paths:
113
+ - lib
114
+ required_ruby_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: 2.6.0
119
+ required_rubygems_version: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">"
122
+ - !ruby/object:Gem::Version
123
+ version: 1.3.1
124
+ requirements: []
125
+ rubygems_version: 3.0.3
126
+ signing_key:
127
+ specification_version: 4
128
+ summary: Ruby library for consuming Redox JSON APIs
129
+ test_files: []