emmy-http-client 0.1.13 → 0.2

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
  SHA1:
3
- metadata.gz: 35ae1f319ef6715a779b2c5798b153e0edf7a72c
4
- data.tar.gz: 804b09e885fa952873da2e79dcf361beb8cc9439
3
+ metadata.gz: 17223d1b569f835ff4c1cb54cce8454990d9fbb9
4
+ data.tar.gz: 4d9d5a9aee2ac61b79b279b48e1175c187da9393
5
5
  SHA512:
6
- metadata.gz: 876bec56c13a266e1f2052af8136fe18ecffc814503cb38770d5be8bdd99f5a031268af966442c2691b1c4acc47ae33c6a85de8830011fbb4a4ca6ab7ed3d374
7
- data.tar.gz: 98e1222bd21193c24bfbc0016435d23887bb5006ebac1b35f4d73ba78d1783e7d742831103b7eff79150ebfc44cbc6ed131c6d12b1803a9163933a2ca51adce1
6
+ metadata.gz: f3d040be8dd8ff6bbcb538f472b124e964b6b198f1a96236261adfe55f0ce0f96d5bea2a736bf53be15b167ae2a854a300f444afe93abd0d736c2131a43d40ce
7
+ data.tar.gz: 5a78e0ffdec28e6336118fa2d13e5b88f97aac250fe5c714b29ad63893b42d91d51f3b59e9de3e9765158675f10fa72a6532d09a1b3404531aef6204c01f612e
data/Gemfile CHANGED
@@ -2,5 +2,3 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in emmy-http-client.gemspec
4
4
  gemspec
5
-
6
- gem 'emmy-http'#, path: '~/Dropbox/Projects/emmy/emmy/emmy-http'
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2015-2016 Maksim V. <inre.storm@gmail.com>
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -4,30 +4,33 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'emmy_http/client/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
- spec.name = "emmy-http-client"
7
+ spec.name = 'emmy-http-client'
8
8
  spec.version = EmmyHttp::Client::VERSION
9
- spec.authors = ["inre"]
10
- spec.email = ["inre.storm@gmail.com"]
9
+ spec.authors = ['Mkasim V.']
10
+ spec.email = ['inre.storm@gmail.com']
11
11
 
12
12
  spec.summary = %q{HTTP request client}
13
13
  spec.description = %q{EventMachine-based HTTP request client}
14
- #spec.homepage = ""
15
- spec.license = "MIT"
14
+ spec.homepage = 'https://github.com/emmygems'
15
+ spec.license = 'MIT'
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
- spec.bindir = "exe"
18
+ spec.bindir = 'exe'
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
- spec.require_paths = ["lib"]
20
+ spec.require_paths = ['lib']
21
21
 
22
- spec.add_dependency "http_parser.rb", "0.6.0"
23
- spec.add_dependency "addressable", ">= 2.3.8"
24
- spec.add_dependency "event_object", "~> 0.9.1"
25
- spec.add_dependency "fibre", "~> 0.9.7"
26
- spec.add_dependency "emmy-machine", "~> 0.1.7"
27
- #spec.add_dependency "emmy-http", "~> 0.1.7"
22
+ spec.required_ruby_version = '>= 2.2.2'
23
+ spec.required_rubygems_version = '>= 2.3.0'
28
24
 
29
- spec.add_development_dependency "eventmachine", ">= 1.0.7"
30
- spec.add_development_dependency "bundler", "~> 1.9"
31
- spec.add_development_dependency "rake", "~> 10.0"
32
- spec.add_development_dependency "rspec", "~> 3"
25
+ spec.add_dependency 'http_parser.rb', '0.6.0'
26
+ spec.add_dependency 'addressable', '~> 2.5'
27
+ spec.add_dependency 'event_object', '~> 1'
28
+ spec.add_dependency 'fibre', '~> 1'
29
+ spec.add_dependency 'emmy-machine', '~> 0.4'
30
+ spec.add_dependency 'emmy-http', '~> 0.4'
31
+
32
+ spec.add_development_dependency 'eventmachine', '~> 1'
33
+ spec.add_development_dependency 'bundler', '~> 1.12'
34
+ spec.add_development_dependency 'rake', '~> 10'
35
+ spec.add_development_dependency 'rspec', '~> 3'
33
36
  end
@@ -164,7 +164,7 @@ module EmmyHttp
164
164
 
165
165
  unless headers.key? 'Host'
166
166
  headers['Host'] = url.host
167
- headers['Host'] += ":#{url.port}" unless (url.scheme == 'http' && url.port == 80) ||
167
+ headers['Host'] += ":#{url.port}" unless url.port.nil? || (url.scheme == 'http' && url.port == 80) ||
168
168
  (url.scheme == 'https' && url.port == 443)
169
169
  end
170
170
  end
@@ -1,5 +1,5 @@
1
1
  module EmmyHttp
2
2
  module Client
3
- VERSION = "0.1.13"
3
+ VERSION = "0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: emmy-http-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.13
4
+ version: '0.2'
5
5
  platform: ruby
6
6
  authors:
7
- - inre
7
+ - Mkasim V.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-11-07 00:00:00.000000000 Z
11
+ date: 2016-11-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http_parser.rb
@@ -28,100 +28,114 @@ dependencies:
28
28
  name: addressable
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 2.3.8
33
+ version: '2.5'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 2.3.8
40
+ version: '2.5'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: event_object
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 0.9.1
47
+ version: '1'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 0.9.1
54
+ version: '1'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: fibre
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 0.9.7
61
+ version: '1'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 0.9.7
68
+ version: '1'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: emmy-machine
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 0.1.7
75
+ version: '0.4'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 0.1.7
82
+ version: '0.4'
83
+ - !ruby/object:Gem::Dependency
84
+ name: emmy-http
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '0.4'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '0.4'
83
97
  - !ruby/object:Gem::Dependency
84
98
  name: eventmachine
85
99
  requirement: !ruby/object:Gem::Requirement
86
100
  requirements:
87
- - - ">="
101
+ - - "~>"
88
102
  - !ruby/object:Gem::Version
89
- version: 1.0.7
103
+ version: '1'
90
104
  type: :development
91
105
  prerelease: false
92
106
  version_requirements: !ruby/object:Gem::Requirement
93
107
  requirements:
94
- - - ">="
108
+ - - "~>"
95
109
  - !ruby/object:Gem::Version
96
- version: 1.0.7
110
+ version: '1'
97
111
  - !ruby/object:Gem::Dependency
98
112
  name: bundler
99
113
  requirement: !ruby/object:Gem::Requirement
100
114
  requirements:
101
115
  - - "~>"
102
116
  - !ruby/object:Gem::Version
103
- version: '1.9'
117
+ version: '1.12'
104
118
  type: :development
105
119
  prerelease: false
106
120
  version_requirements: !ruby/object:Gem::Requirement
107
121
  requirements:
108
122
  - - "~>"
109
123
  - !ruby/object:Gem::Version
110
- version: '1.9'
124
+ version: '1.12'
111
125
  - !ruby/object:Gem::Dependency
112
126
  name: rake
113
127
  requirement: !ruby/object:Gem::Requirement
114
128
  requirements:
115
129
  - - "~>"
116
130
  - !ruby/object:Gem::Version
117
- version: '10.0'
131
+ version: '10'
118
132
  type: :development
119
133
  prerelease: false
120
134
  version_requirements: !ruby/object:Gem::Requirement
121
135
  requirements:
122
136
  - - "~>"
123
137
  - !ruby/object:Gem::Version
124
- version: '10.0'
138
+ version: '10'
125
139
  - !ruby/object:Gem::Dependency
126
140
  name: rspec
127
141
  requirement: !ruby/object:Gem::Requirement
@@ -147,7 +161,7 @@ files:
147
161
  - ".rspec"
148
162
  - ".travis.yml"
149
163
  - Gemfile
150
- - LICENSE.txt
164
+ - LICENSE
151
165
  - README.md
152
166
  - Rakefile
153
167
  - TODO.md
@@ -164,7 +178,7 @@ files:
164
178
  - lib/emmy_http/client/monitor.rb
165
179
  - lib/emmy_http/client/parser.rb
166
180
  - lib/emmy_http/client/version.rb
167
- homepage:
181
+ homepage: https://github.com/emmygems
168
182
  licenses:
169
183
  - MIT
170
184
  metadata: {}
@@ -176,15 +190,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
176
190
  requirements:
177
191
  - - ">="
178
192
  - !ruby/object:Gem::Version
179
- version: '0'
193
+ version: 2.2.2
180
194
  required_rubygems_version: !ruby/object:Gem::Requirement
181
195
  requirements:
182
196
  - - ">="
183
197
  - !ruby/object:Gem::Version
184
- version: '0'
198
+ version: 2.3.0
185
199
  requirements: []
186
200
  rubyforge_project:
187
- rubygems_version: 2.6.6
201
+ rubygems_version: 2.5.1
188
202
  signing_key:
189
203
  specification_version: 4
190
204
  summary: HTTP request client
data/LICENSE.txt DELETED
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2015 che
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
13
- all 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
21
- THE SOFTWARE.