isomorfeus-iodine 0.7.44 → 0.7.45
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +24 -0
- data/Rakefile +44 -44
- data/ext/iodine/fio.c +2 -2
- data/lib/iodine/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 277aa32d5edd69e6be34c20fac615da31e888c3f314904d69792f5d3ed5cd6f8
|
4
|
+
data.tar.gz: 5f2a07b678c05bf3a2ac25c6dcd664f2455d1bb10a5116c68607ee508628154a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f60ea8f0d7d3b500371465c61b576a5600c493cd44a5965855936252c503cea129cf47b0ee32e8b20a63b0cc66596cebe3fc75db498512e22a9903d397d0c042
|
7
|
+
data.tar.gz: 61377e06f198ed4c2b1b37e40a832cfa6c5cdd3066e05d4cb5ee428898cbc5e391d0f22c9e38f99621016ced805cc61a34873b9b3fcacb3fc681ec64ccf7526f
|
@@ -0,0 +1,24 @@
|
|
1
|
+
name: Isomorfeus Project
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ '*' ]
|
6
|
+
pull_request:
|
7
|
+
branches: [ '*' ]
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
specs:
|
11
|
+
strategy:
|
12
|
+
matrix:
|
13
|
+
os: [ubuntu-latest, macos-latest, windows-latest]
|
14
|
+
runs-on: ${{ matrix.os }}
|
15
|
+
steps:
|
16
|
+
- uses: actions/checkout@v2
|
17
|
+
- name: Set up Ruby 3.0
|
18
|
+
uses: ruby/setup-ruby@v1
|
19
|
+
with:
|
20
|
+
ruby-version: 3.0
|
21
|
+
bundler-cache: true
|
22
|
+
- name: Build and test with Rake
|
23
|
+
run: |
|
24
|
+
bundle exec rake
|
data/Rakefile
CHANGED
@@ -1,44 +1,44 @@
|
|
1
|
-
require "bundler/gem_tasks"
|
2
|
-
require "rake/extensiontask"
|
3
|
-
require_relative 'lib/iodine/version'
|
4
|
-
|
5
|
-
begin
|
6
|
-
require 'rspec/core/rake_task'
|
7
|
-
RSpec::Core::RakeTask.new(:rspec)
|
8
|
-
rescue LoadError
|
9
|
-
end
|
10
|
-
|
11
|
-
task :spec => [:compile, :rspec]
|
12
|
-
|
13
|
-
task :push_packages do
|
14
|
-
Rake::Task['push_packages_to_rubygems'].invoke
|
15
|
-
Rake::Task['push_packages_to_github'].invoke
|
16
|
-
end
|
17
|
-
|
18
|
-
task :push_packages_to_rubygems do
|
19
|
-
system("gem push isomorfeus-iodine-#{Iodine::VERSION}.gem")
|
20
|
-
end
|
21
|
-
|
22
|
-
task :push_packages_to_github do
|
23
|
-
system("gem push --key github --host https://rubygems.pkg.github.com/isomorfeus isomorfeus-iodine-#{Iodine::VERSION}.gem")
|
24
|
-
end
|
25
|
-
|
26
|
-
task :push do
|
27
|
-
system("git push github")
|
28
|
-
system("git push gitlab")
|
29
|
-
system("git push bitbucket")
|
30
|
-
system("git push gitprep")
|
31
|
-
end
|
32
|
-
|
33
|
-
task :default => [:compile, :spec]
|
34
|
-
|
35
|
-
Rake::ExtensionTask.new "iodine" do |ext|
|
36
|
-
ext.lib_dir = "lib/iodine"
|
37
|
-
end
|
38
|
-
|
39
|
-
# Rake::ExtensionTask.new "iodine_http" do |ext|
|
40
|
-
# ext.name = 'iodine_http'
|
41
|
-
# ext.lib_dir = "lib/iodine"
|
42
|
-
# ext.ext_dir = 'ext/iodine'
|
43
|
-
# ext.config_script = 'extconf-http.rb'
|
44
|
-
# end
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
require "rake/extensiontask"
|
3
|
+
require_relative 'lib/iodine/version'
|
4
|
+
|
5
|
+
begin
|
6
|
+
require 'rspec/core/rake_task'
|
7
|
+
RSpec::Core::RakeTask.new(:rspec)
|
8
|
+
rescue LoadError
|
9
|
+
end
|
10
|
+
|
11
|
+
task :spec => [:compile, :rspec]
|
12
|
+
|
13
|
+
task :push_packages do
|
14
|
+
Rake::Task['push_packages_to_rubygems'].invoke
|
15
|
+
Rake::Task['push_packages_to_github'].invoke
|
16
|
+
end
|
17
|
+
|
18
|
+
task :push_packages_to_rubygems do
|
19
|
+
system("gem push isomorfeus-iodine-#{Iodine::VERSION}.gem")
|
20
|
+
end
|
21
|
+
|
22
|
+
task :push_packages_to_github do
|
23
|
+
system("gem push --key github --host https://rubygems.pkg.github.com/isomorfeus isomorfeus-iodine-#{Iodine::VERSION}.gem")
|
24
|
+
end
|
25
|
+
|
26
|
+
task :push do
|
27
|
+
system("git push github")
|
28
|
+
system("git push gitlab")
|
29
|
+
system("git push bitbucket")
|
30
|
+
system("git push gitprep")
|
31
|
+
end
|
32
|
+
|
33
|
+
task :default => [:compile, :spec]
|
34
|
+
|
35
|
+
Rake::ExtensionTask.new "iodine" do |ext|
|
36
|
+
ext.lib_dir = "lib/iodine"
|
37
|
+
end
|
38
|
+
|
39
|
+
# Rake::ExtensionTask.new "iodine_http" do |ext|
|
40
|
+
# ext.name = 'iodine_http'
|
41
|
+
# ext.lib_dir = "lib/iodine"
|
42
|
+
# ext.ext_dir = 'ext/iodine'
|
43
|
+
# ext.config_script = 'extconf-http.rb'
|
44
|
+
# end
|
data/ext/iodine/fio.c
CHANGED
@@ -878,7 +878,7 @@ static void init_fio_thread_data_ptr(void) {
|
|
878
878
|
fio_thread_data->handle = INVALID_HANDLE_VALUE;
|
879
879
|
#else
|
880
880
|
fio_thread_data->fd_wait = -1;
|
881
|
-
fio_thread_data->fd_signal = -1
|
881
|
+
fio_thread_data->fd_signal = -1;
|
882
882
|
#endif
|
883
883
|
pthread_setspecific(fio_thread_data_key, fio_thread_data);
|
884
884
|
}
|
@@ -7928,7 +7928,7 @@ static inline arena_s *arena_lock(arena_s *preffered) {
|
|
7928
7928
|
|
7929
7929
|
static pthread_key_t arena_last_used_key;
|
7930
7930
|
static pthread_once_t arena_last_used_once;
|
7931
|
-
|
7931
|
+
static void init_arena_last_used_key(void) {
|
7932
7932
|
pthread_key_create(&arena_last_used_key, NULL);
|
7933
7933
|
}
|
7934
7934
|
|
data/lib/iodine/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: isomorfeus-iodine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.45
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Biedermann
|
@@ -120,6 +120,7 @@ extensions:
|
|
120
120
|
extra_rdoc_files: []
|
121
121
|
files:
|
122
122
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
123
|
+
- ".github/workflows/ruby.yml"
|
123
124
|
- ".gitignore"
|
124
125
|
- ".rspec"
|
125
126
|
- ".travis.yml"
|
@@ -241,7 +242,7 @@ licenses:
|
|
241
242
|
- MIT
|
242
243
|
metadata: {}
|
243
244
|
post_install_message: |-
|
244
|
-
Thank you for installing Iodine 0.7.
|
245
|
+
Thank you for installing Iodine 0.7.45.
|
245
246
|
Remember: if iodine supports your business, it's only fair to give value back (code contributions / donations) to Bo.
|
246
247
|
rdoc_options: []
|
247
248
|
require_paths:
|