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

Add observer gem to gemspec #294

Merged
merged 1 commit into from
May 2, 2024
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
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ PATH
actionpack (>= 5.2)
actionview (>= 5.2)
activesupport (>= 5.2)
observer (~> 0.1)
railties (>= 5.2)
thread-local (>= 1.1.0)

Expand Down Expand Up @@ -114,6 +115,7 @@ GEM
racc (~> 1.4)
nokogiri (1.14.3-x86_64-linux)
racc (~> 1.4)
observer (0.1.2)
parallel (1.22.1)
parser (3.2.1.0)
ast (~> 2.4.1)
Expand Down
1 change: 1 addition & 0 deletions cable_ready.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Gem::Specification.new do |gem|
gem.add_dependency "activesupport", rails_version
gem.add_dependency "railties", rails_version
gem.add_dependency "thread-local", ">= 1.1.0"
gem.add_dependency "observer", "~> 0.1"

gem.add_development_dependency "magic_frozen_string_literal"
gem.add_development_dependency "mocha"
Expand Down
Loading