mieps_http-2 0.8.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.
metadata ADDED
@@ -0,0 +1,116 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mieps_http-2
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.8.0
5
+ platform: ruby
6
+ authors:
7
+ - Ilya Grigorik
8
+ - Kaoru Maeda
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2016-01-31 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ~>
19
+ - !ruby/object:Gem::Version
20
+ version: '1.3'
21
+ type: :development
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ~>
26
+ - !ruby/object:Gem::Version
27
+ version: '1.3'
28
+ description: Fork of Pure-ruby HTTP 2.0 protocol implementation - https://github.com/igrigorik/http-2
29
+ email:
30
+ - ilya@igvita.com
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - .autotest
36
+ - .coveralls.yml
37
+ - .gitignore
38
+ - .gitmodules
39
+ - .rspec
40
+ - .rubocop.yml
41
+ - .rubocop_todo.yml
42
+ - .travis.yml
43
+ - Gemfile
44
+ - README.md
45
+ - Rakefile
46
+ - example/README.md
47
+ - example/client.rb
48
+ - example/helper.rb
49
+ - example/keys/mycert.pem
50
+ - example/keys/mykey.pem
51
+ - example/server.rb
52
+ - example/upgrade_server.rb
53
+ - http-2.gemspec
54
+ - lib/http/2.rb
55
+ - lib/http/2/buffer.rb
56
+ - lib/http/2/client.rb
57
+ - lib/http/2/compressor.rb
58
+ - lib/http/2/connection.rb
59
+ - lib/http/2/emitter.rb
60
+ - lib/http/2/error.rb
61
+ - lib/http/2/flow_buffer.rb
62
+ - lib/http/2/framer.rb
63
+ - lib/http/2/huffman.rb
64
+ - lib/http/2/huffman_statemachine.rb
65
+ - lib/http/2/server.rb
66
+ - lib/http/2/stream.rb
67
+ - lib/http/2/version.rb
68
+ - lib/tasks/generate_huffman_table.rb
69
+ - spec/buffer_spec.rb
70
+ - spec/client_spec.rb
71
+ - spec/compressor_spec.rb
72
+ - spec/connection_spec.rb
73
+ - spec/emitter_spec.rb
74
+ - spec/framer_spec.rb
75
+ - spec/helper.rb
76
+ - spec/hpack_test_spec.rb
77
+ - spec/huffman_spec.rb
78
+ - spec/server_spec.rb
79
+ - spec/stream_spec.rb
80
+ homepage: ''
81
+ licenses:
82
+ - MIT
83
+ metadata: {}
84
+ post_install_message:
85
+ rdoc_options: []
86
+ require_paths:
87
+ - lib
88
+ required_ruby_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - '>='
91
+ - !ruby/object:Gem::Version
92
+ version: 2.1.0
93
+ required_rubygems_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - '>='
96
+ - !ruby/object:Gem::Version
97
+ version: '0'
98
+ requirements: []
99
+ rubyforge_project:
100
+ rubygems_version: 2.4.5
101
+ signing_key:
102
+ specification_version: 4
103
+ summary: Fork of Pure-ruby HTTP 2.0 protocol implementation - https://github.com/igrigorik/http-2
104
+ test_files:
105
+ - spec/buffer_spec.rb
106
+ - spec/client_spec.rb
107
+ - spec/compressor_spec.rb
108
+ - spec/connection_spec.rb
109
+ - spec/emitter_spec.rb
110
+ - spec/framer_spec.rb
111
+ - spec/helper.rb
112
+ - spec/hpack_test_spec.rb
113
+ - spec/huffman_spec.rb
114
+ - spec/server_spec.rb
115
+ - spec/stream_spec.rb
116
+ has_rdoc: