Skip to content

Commit

Permalink
Bump core dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanp committed Dec 24, 2023
1 parent a3ab27a commit 601158b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions goru.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ Gem::Specification.new do |spec|
spec.files = Dir["CHANGELOG.md", "README.md", "LICENSE", "lib/**/*"]
spec.require_path = "lib"

spec.add_dependency "core-extension", "~> 0.4"
spec.add_dependency "core-handler", "~> 0.1"
spec.add_dependency "core-global", "~> 0.2"
spec.add_dependency "core-extension", "~> 0.5"
spec.add_dependency "core-handler", "~> 0.2"
spec.add_dependency "core-global", "~> 0.3"
spec.add_dependency "nio4r", "~> 2.5"
spec.add_dependency "timers", "~> 4.3"
end
4 changes: 2 additions & 2 deletions lib/goru.rb
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# frozen_string_literal: true

require "is/extension"
require "core/extension"

module Goru
require_relative "goru/scheduler"
require_relative "goru/version"

extend Is::Extension
extend Core::Extension

def go(state = nil, io: nil, channel: nil, intent: nil, &block)
Scheduler.go(state, io: io, channel: channel, intent: intent, &block)
Expand Down
4 changes: 2 additions & 2 deletions lib/goru/routine.rb
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# frozen_string_literal: true

require "is/handler"
require "core/handler"

module Goru
# [public]
#
class Routine
include Is::Handler
include Core::Handler

handle(StandardError) do |event:|
if @debug
Expand Down
4 changes: 2 additions & 2 deletions lib/goru/scheduler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require "etc"
require "nio"
require "is/global"
require "core/global"

require_relative "channel"
require_relative "reactor"
Expand All @@ -16,7 +16,7 @@ module Goru
# [public]
#
class Scheduler
include Is::Global
include Core::Global

class << self
# Prevent issues when including `Goru` at the toplevel.
Expand Down

0 comments on commit 601158b

Please sign in to comment.