Skip to content
This repository was archived by the owner on Aug 29, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- 2.5
- 2.6
- 2.7
- 3.0
- "3.0"

experimental: [false]
env: [""]
Expand All @@ -30,6 +30,7 @@ jobs:
- os: ubuntu
ruby: jruby
experimental: true
env: 'JRUBY_OPTS="-X+O --debug"'
- os: ubuntu
ruby: head
experimental: true
Expand Down
9 changes: 0 additions & 9 deletions async-io.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,4 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = ">= 2.5"

spec.add_dependency "async", "~> 1.14"

spec.add_development_dependency "async-container", "~> 0.15"
spec.add_development_dependency "async-rspec", "~> 1.10"
spec.add_development_dependency "bake"
spec.add_development_dependency "bake-bundler"
spec.add_development_dependency "bake-modernize"
spec.add_development_dependency "bundler"
spec.add_development_dependency "covered"
spec.add_development_dependency "rspec", "~> 3.0"
end
14 changes: 12 additions & 2 deletions gems.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,22 @@

source 'https://rubygems.org'

# Specify your gem's dependencies in async-io.gemspec
gemspec

group :development do
gem "async-container", "~> 0.15"
gem "async-rspec", "~> 1.10"
gem "bake"
gem "bake-bundler"
gem "bake-modernize" unless defined?(JRUBY_VERSION)
gem "bundler"
gem "covered"
gem "rspec", "~> 3.0"
end

group :test do
gem 'benchmark-ips'
gem 'ruby-prof', platforms: :mri

gem 'http'
end
2 changes: 1 addition & 1 deletion spec/async/io/shared_endpoint/server_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@
it_behaves_like Async::IO::SharedEndpoint, described_class
end

RSpec.describe Async::Container::Threaded, if: RUBY_PLATFORM !~ /darwin/ do
RSpec.describe Async::Container::Threaded, if: (RUBY_PLATFORM !~ /darwin/ && RUBY_ENGINE != "jruby") do
it_behaves_like Async::IO::SharedEndpoint, described_class
end