htio 0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 4811d6c3f3996404a088ef83060e9ab1dd71e6b4dbac3e37a0ff7f1009051288
4
+ data.tar.gz: d75fd696bd74f62ff855c0adec59732c49b249b74c6158557ed85afb7211a012
5
+ SHA512:
6
+ metadata.gz: e36765189c8dc172984efa37d00cb2196c244b8284faa549f5e4f2b6b7cd45081471c25da499946ab0e4dac8c8985d0e79124074a6d01bc8002612e844ce8f04
7
+ data.tar.gz: 28b5ef78067e7fd378acbbb7afc145bda588c211351a9b6e154f2e13d333028a4368120fb80c8ac34219800837e755e5f37d382d4c8b886e16112a2a5d13fee3
data/.gitignore ADDED
@@ -0,0 +1,56 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /spec/examples.txt
9
+ /test/tmp/
10
+ /test/version_tmp/
11
+ /tmp/
12
+
13
+ # Used by dotenv library to load environment variables.
14
+ # .env
15
+
16
+ # Ignore Byebug command history file.
17
+ .byebug_history
18
+
19
+ ## Specific to RubyMotion:
20
+ .dat*
21
+ .repl_history
22
+ build/
23
+ *.bridgesupport
24
+ build-iPhoneOS/
25
+ build-iPhoneSimulator/
26
+
27
+ ## Specific to RubyMotion (use of CocoaPods):
28
+ #
29
+ # We recommend against adding the Pods directory to your .gitignore. However
30
+ # you should judge for yourself, the pros and cons are mentioned at:
31
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
32
+ #
33
+ # vendor/Pods/
34
+
35
+ ## Documentation cache and generated files:
36
+ /.yardoc/
37
+ /_yardoc/
38
+ /doc/
39
+ /rdoc/
40
+
41
+ ## Environment normalization:
42
+ /.bundle/
43
+ /vendor/bundle
44
+ /lib/bundler/man/
45
+
46
+ # for a library or gem, you might want to ignore these files since the code is
47
+ # intended to run in multiple environments; otherwise, check them in:
48
+ # Gemfile.lock
49
+ # .ruby-version
50
+ # .ruby-gemset
51
+
52
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
53
+ .rvmrc
54
+
55
+ # Used by RuboCop. Remote config files pulled in from inherit_from directive.
56
+ # .rubocop-https?--*
data/CHANGELOG.md ADDED
File without changes
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,46 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ htio (0.1)
5
+ http-2 (~> 0.10.0)
6
+ http_parser.rb (~> 0.6.0)
7
+ polyphony (~> 0.57.0)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ ansi (1.5.0)
13
+ builder (3.2.4)
14
+ docile (1.4.0)
15
+ http-2 (0.10.2)
16
+ http_parser.rb (0.6.0)
17
+ json (2.5.1)
18
+ localhost (1.1.8)
19
+ minitest (5.11.3)
20
+ minitest-reporters (1.4.3)
21
+ ansi
22
+ builder
23
+ minitest (>= 5.0)
24
+ ruby-progressbar
25
+ polyphony (0.57.0)
26
+ rake (12.3.3)
27
+ ruby-progressbar (1.11.0)
28
+ simplecov (0.17.1)
29
+ docile (~> 1.1)
30
+ json (>= 1.8, < 3)
31
+ simplecov-html (~> 0.10.0)
32
+ simplecov-html (0.10.2)
33
+
34
+ PLATFORMS
35
+ ruby
36
+
37
+ DEPENDENCIES
38
+ htio!
39
+ localhost (~> 1.1.4)
40
+ minitest (~> 5.11.3)
41
+ minitest-reporters (~> 1.4.2)
42
+ rake (~> 12.3.3)
43
+ simplecov (~> 0.17.1)
44
+
45
+ BUNDLED WITH
46
+ 2.1.4
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2021 Digital Fabric
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.
data/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # htio
2
+ A modern HTTP client for Ruby
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rake/clean"
5
+
6
+ # frozen_string_literal: true
7
+
8
+ task :default => [:test]
9
+ task :test do
10
+ exec 'ruby test/run.rb'
11
+ end
12
+
data/htio.gemspec ADDED
@@ -0,0 +1,30 @@
1
+ require_relative './lib/htio/version'
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = 'htio'
5
+ s.version = Htio::VERSION
6
+ s.licenses = ['MIT']
7
+ s.summary = 'Htio - a modern HTTP client for Ruby'
8
+ s.author = 'Sharon Rosner'
9
+ s.email = 'sharon@noteflakes.com'
10
+ s.files = `git ls-files`.split
11
+ s.homepage = 'http://github.com/digital-fabric/htio'
12
+ s.metadata = {
13
+ "source_code_uri" => "https://github.com/digital-fabric/htio"
14
+ }
15
+ s.rdoc_options = ["--title", "htio", "--main", "README.md"]
16
+ s.extra_rdoc_files = ["README.md"]
17
+ s.require_paths = ["lib"]
18
+ s.required_ruby_version = '>= 2.6'
19
+
20
+ s.add_runtime_dependency 'polyphony', '~>0.57.0'
21
+
22
+ s.add_runtime_dependency 'http_parser.rb', '~>0.6.0'
23
+ s.add_runtime_dependency 'http-2', '~>0.10.0'
24
+
25
+ s.add_development_dependency 'rake', '~>12.3.3'
26
+ s.add_development_dependency 'localhost', '~>1.1.4'
27
+ s.add_development_dependency 'minitest', '~>5.11.3'
28
+ s.add_development_dependency 'minitest-reporters', '~>1.4.2'
29
+ s.add_development_dependency 'simplecov', '~>0.17.1'
30
+ end
data/lib/htio.rb ADDED
File without changes
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Htio
4
+ VERSION = '0.1'
5
+ end
data/test/helper.rb ADDED
@@ -0,0 +1,50 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/setup'
4
+
5
+ require 'fileutils'
6
+ require_relative './eg'
7
+
8
+ require_relative './coverage' if ENV['COVERAGE']
9
+
10
+ require 'minitest/autorun'
11
+ require 'minitest/reporters'
12
+
13
+ require 'polyphony'
14
+
15
+ ::Exception.__disable_sanitized_backtrace__ = true
16
+
17
+ Minitest::Reporters.use! [
18
+ Minitest::Reporters::SpecReporter.new
19
+ ]
20
+
21
+ class MiniTest::Test
22
+ def setup
23
+ # puts "* setup #{self.name}"
24
+ if Fiber.current.children.size > 0
25
+ puts "Children left: #{Fiber.current.children.inspect}"
26
+ exit!
27
+ end
28
+ Fiber.current.setup_main_fiber
29
+ Fiber.current.instance_variable_set(:@auto_watcher, nil)
30
+ Thread.current.backend = Polyphony::Backend.new
31
+ sleep 0
32
+ end
33
+
34
+ def teardown
35
+ # puts "* teardown #{self.name.inspect} Fiber.current: #{Fiber.current.inspect}"
36
+ Fiber.current.shutdown_all_children
37
+ rescue => e
38
+ puts e
39
+ puts e.backtrace.join("\n")
40
+ exit!
41
+ end
42
+ end
43
+
44
+ module Kernel
45
+ def capture_exception
46
+ yield
47
+ rescue Exception => e
48
+ e
49
+ end
50
+ end
data/test/run.rb ADDED
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ Dir.glob("#{__dir__}/test_*.rb").each do |path|
4
+ require(path)
5
+ end
metadata ADDED
@@ -0,0 +1,172 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: htio
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.1'
5
+ platform: ruby
6
+ authors:
7
+ - Sharon Rosner
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-06-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: polyphony
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.57.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.57.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: http_parser.rb
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.6.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.6.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: http-2
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.10.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.10.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 12.3.3
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 12.3.3
69
+ - !ruby/object:Gem::Dependency
70
+ name: localhost
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 1.1.4
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 1.1.4
83
+ - !ruby/object:Gem::Dependency
84
+ name: minitest
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 5.11.3
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 5.11.3
97
+ - !ruby/object:Gem::Dependency
98
+ name: minitest-reporters
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 1.4.2
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 1.4.2
111
+ - !ruby/object:Gem::Dependency
112
+ name: simplecov
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: 0.17.1
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: 0.17.1
125
+ description:
126
+ email: sharon@noteflakes.com
127
+ executables: []
128
+ extensions: []
129
+ extra_rdoc_files:
130
+ - README.md
131
+ files:
132
+ - ".gitignore"
133
+ - CHANGELOG.md
134
+ - Gemfile
135
+ - Gemfile.lock
136
+ - LICENSE
137
+ - README.md
138
+ - Rakefile
139
+ - htio.gemspec
140
+ - lib/htio.rb
141
+ - lib/htio/version.rb
142
+ - test/helper.rb
143
+ - test/run.rb
144
+ homepage: http://github.com/digital-fabric/htio
145
+ licenses:
146
+ - MIT
147
+ metadata:
148
+ source_code_uri: https://github.com/digital-fabric/htio
149
+ post_install_message:
150
+ rdoc_options:
151
+ - "--title"
152
+ - htio
153
+ - "--main"
154
+ - README.md
155
+ require_paths:
156
+ - lib
157
+ required_ruby_version: !ruby/object:Gem::Requirement
158
+ requirements:
159
+ - - ">="
160
+ - !ruby/object:Gem::Version
161
+ version: '2.6'
162
+ required_rubygems_version: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ requirements: []
168
+ rubygems_version: 3.1.4
169
+ signing_key:
170
+ specification_version: 4
171
+ summary: Htio - a modern HTTP client for Ruby
172
+ test_files: []