isomorfeus-iodine 0.7.48 → 0.7.49
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/bug_report.md +1 -1
- data/CHANGELOG.md +1038 -1038
- data/Gemfile +10 -10
- data/bin/console +18 -18
- data/ext/iodine/http1_parser.h +873 -873
- data/ext/iodine/iodine_rack_io.c +0 -4
- data/lib/iodine/version.rb +1 -1
- metadata +2 -2
data/Gemfile
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
source 'https://rubygems.org'
|
2
|
-
|
3
|
-
group :test do
|
4
|
-
gem 'rspec'
|
5
|
-
gem 'rack'
|
6
|
-
gem 'http'
|
7
|
-
end
|
8
|
-
|
9
|
-
# Specify your gem's dependencies in iodine.gemspec
|
10
|
-
gemspec
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
group :test do
|
4
|
+
gem 'rspec'
|
5
|
+
gem 'rack'
|
6
|
+
gem 'http'
|
7
|
+
end
|
8
|
+
|
9
|
+
# Specify your gem's dependencies in iodine.gemspec
|
10
|
+
gemspec
|
data/bin/console
CHANGED
@@ -1,18 +1,18 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
# this will compile Iodine and start a Ruby console with the Iodine gem loaded.
|
4
|
-
|
5
|
-
Dir.chdir(File.expand_path(File.join('..', '..'), __FILE__))
|
6
|
-
puts `rake clean`
|
7
|
-
puts `rake compile`
|
8
|
-
|
9
|
-
require 'benchmark'
|
10
|
-
$LOAD_PATH.unshift File.expand_path(File.join('..', '..', 'lib'), __FILE__ )
|
11
|
-
require "bundler/setup"
|
12
|
-
require "iodine"
|
13
|
-
|
14
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
15
|
-
# with your gem easier. You can also use a different console, if you like.
|
16
|
-
|
17
|
-
require "irb"
|
18
|
-
IRB.start
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# this will compile Iodine and start a Ruby console with the Iodine gem loaded.
|
4
|
+
|
5
|
+
Dir.chdir(File.expand_path(File.join('..', '..'), __FILE__))
|
6
|
+
puts `rake clean`
|
7
|
+
puts `rake compile`
|
8
|
+
|
9
|
+
require 'benchmark'
|
10
|
+
$LOAD_PATH.unshift File.expand_path(File.join('..', '..', 'lib'), __FILE__ )
|
11
|
+
require "bundler/setup"
|
12
|
+
require "iodine"
|
13
|
+
|
14
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
15
|
+
# with your gem easier. You can also use a different console, if you like.
|
16
|
+
|
17
|
+
require "irb"
|
18
|
+
IRB.start
|