-
Notifications
You must be signed in to change notification settings - Fork 82
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
fix: drop actionpack from runtime requirements #34
fix: drop actionpack from runtime requirements #34
Conversation
@noaelad would you mind taking a look at currently open PR's. There are a few including this that remove friction for those playing around with the library. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for flagging @prikha. This PR looks good to me, thanks for reducing the footprint. Would you mind removing it as a dev dependency as well? I don't think it's used anywhere else.
I'll take a look at the other open PRs later this week, apologies for the slowness on these.
There is spec for |
64de56e
to
1ebf3ff
Compare
Noa @noaelad can you give me a hint how to trigger the builds though. I feel like the spec is legit. Are you sure we want to drop it? |
You are right about the spec, sorry I missed that one. Let's keep it as a dev dependency then. |
@noaelad what do I need to do to: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks great! One thing: this looks to me like a bugfix, since active_support
isn't listed as a dependency in the gemspec. If you tried to use tracing in a non-Rails env, it wouldn't work. I'm going to rename this as a fix
## [0.5.1](v0.5.0...v0.5.1) (2019-10-22) ### Bug Fixes * drop actionpack from runtime dependencies ([#34](#34)) ([64acd27](64acd27))
🎉 This PR is included in version 0.5.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
At this moment distributed tracing has an
active_support
runtime dependency. Which might not be welcome in some Ruby projects.It would be nice to leave it at least a development dependency or drop completely.