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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5893388374d206bbee209824cdefa9760831bf64a9658d8eec99bbe20df4505b
4
- data.tar.gz: 63ea30a5c64290b6ba15c302dcc98ee00af12def75c88deb54ffa8e8fac7fccb
3
+ metadata.gz: 277aa32d5edd69e6be34c20fac615da31e888c3f314904d69792f5d3ed5cd6f8
4
+ data.tar.gz: 5f2a07b678c05bf3a2ac25c6dcd664f2455d1bb10a5116c68607ee508628154a
5
5
  SHA512:
6
- metadata.gz: 829bfc8d524ca8f635ad5fd1c16d17b64a08402be231be3d34e0fce26c9d4a0081f54497a5803aa88687087d778ca2c207ed6a1957264e61fe03df5f8287c2cd
7
- data.tar.gz: 875831436b38f10ccab0b94600f979a83393c62e2636a7f66a3496732712b2d4260e032fdd380064054f7bf32cbd812d8064d62b7bd360eccdf4639f7f9b5408
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
- static_void init_arena_last_used_key(void) {
7931
+ static void init_arena_last_used_key(void) {
7932
7932
  pthread_key_create(&arena_last_used_key, NULL);
7933
7933
  }
7934
7934
 
@@ -1,3 +1,3 @@
1
1
  module Iodine
2
- VERSION = '0.7.44'.freeze
2
+ VERSION = '0.7.45'.freeze
3
3
  end
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.44
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.44.
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: