Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removes unused gem resque-bus #103

Merged
merged 5 commits into from
Dec 27, 2023
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
37 changes: 0 additions & 37 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ PATH
nokogiri (>= 1.13.0)
oj (~> 3.11)
ox (~> 2.14)
resque-bus (~> 0.7.0)
typhoeus (~> 1.4.0)

GEM
Expand Down Expand Up @@ -154,8 +153,6 @@ GEM
dry-initializer (~> 3.0)
dry-schema (~> 1.5, >= 1.5.2)
erubi (1.10.0)
et-orbi (1.2.6)
tzinfo
ethon (0.15.0)
ffi (>= 1.15.0)
faker (2.18.0)
Expand All @@ -176,9 +173,6 @@ GEM
faraday_middleware (1.2.0)
faraday (~> 1.0)
ffi (1.15.4)
fugit (1.5.2)
et-orbi (~> 1.1, >= 1.1.8)
raabro (~> 1.4)
globalid (0.5.2)
activesupport (>= 5.0)
hashdiff (1.0.1)
Expand Down Expand Up @@ -207,7 +201,6 @@ GEM
mongoid (7.3.0)
activemodel (>= 5.1, < 6.2)
mongo (>= 2.10.5, < 3.0.0)
mono_logger (1.1.1)
multi_json (1.15.0)
multipart-post (2.1.1)
mustermann (1.1.1)
Expand All @@ -225,10 +218,6 @@ GEM
byebug (~> 11.0)
pry (~> 0.10)
public_suffix (4.0.6)
queue-bus (0.12.0)
multi_json
redis
raabro (1.4.0)
racc (1.6.2)
rack (2.2.3)
rack-protection (2.1.0)
Expand Down Expand Up @@ -264,29 +253,7 @@ GEM
rainbow (3.0.0)
rake (13.0.6)
rbtree (0.4.6)
redis (4.5.1)
redis-namespace (1.8.1)
redis (>= 3.0.4)
regexp_parser (2.1.1)
resque (1.27.4)
mono_logger (~> 1.0)
multi_json (~> 1.0)
redis-namespace (~> 1.3)
sinatra (>= 0.9.2)
vegas (~> 0.1.2)
resque-bus (0.7.0)
queue-bus (>= 0.7, < 1)
resque (>= 1.10.0, < 2.0)
resque-retry
resque-scheduler (>= 2.0.1)
resque-retry (1.7.6)
resque (>= 1.25, < 3.0)
resque-scheduler (~> 4.0)
resque-scheduler (4.5.0)
mono_logger (~> 1.0)
redis (>= 3.3)
resque (>= 1.27)
rufus-scheduler (~> 3.2, < 3.7)
rexml (3.2.5)
rspec-core (3.10.1)
rspec-support (~> 3.10.0)
Expand Down Expand Up @@ -318,8 +285,6 @@ GEM
parser (>= 3.0.1.1)
ruby-progressbar (1.11.0)
ruby2_keywords (0.0.4)
rufus-scheduler (3.6.0)
fugit (~> 1.1, >= 1.1.6)
set (1.0.2)
sinatra (2.1.0)
mustermann (~> 1.0)
Expand All @@ -343,8 +308,6 @@ GEM
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
unicode-display_width (2.0.0)
vegas (0.1.11)
rack (>= 1.0.0)
webmock (3.13.0)
addressable (>= 2.3.6)
crack (>= 0.3.2)
Expand Down
1 change: 0 additions & 1 deletion event_source.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ Gem::Specification.new do |spec|
spec.add_dependency 'mime-types'
spec.add_dependency 'oj', '~> 3.11'
spec.add_dependency 'ox', '~> 2.14'
spec.add_dependency 'resque-bus', '~> 0.7.0'
spec.add_dependency 'typhoeus', '~> 1.4.0'

# TODO: Change to development dependency
Expand Down
19 changes: 0 additions & 19 deletions lib/event_source/tasks/event_source.rake

This file was deleted.

This file was deleted.

5 changes: 1 addition & 4 deletions spec/rails_app/config/initializers/event_source.rb
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,10 @@
# {
# url: ENV['RABBITMQ_SERVER']
# },
# resque_bus: {
# protocol: :resque_bus
# }
# ]

# config.asyncapi_resources = AcaEntities::AsyncApi::Mitc
# config.asyncapi_resources = AcaEntities.find_resources_for(:enroll, %w[amqp resque_bus]) # will give you resouces in array of hashes form
# config.asyncapi_resources = AcaEntities.find_resources_for(:enroll, %w[amqp]) # will give you resouces in array of hashes form
# AcaEntities::Operations::AsyncApi::FindResource.new.call(self)
end

Expand Down
Loading