pak VS comver

Compare pak vs comver and see what are their differences.

pak

A namespaced package system for Ruby (by lloeki)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
pak comver
2 3
0 -
- -
10.0 -
over 8 years ago -
Ruby
MIT License -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

pak

Posts with mentions or reviews of pak. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-03.
  • Pragmatic Versioning – An Alternative to Semver
    9 projects | news.ycombinator.com | 3 Dec 2023
    From your issue link:

    > Then commons-logging changes its API incompatibly and is released as commons-logging 2.0.1. Authentication adopts commons-logging 2.0.1 while other libraries still depend on 1.1.1

    > Now my-application is broken, because the dependency tree includes two versions of commons-logging which share packages, class / functions names, and thus can not be loaded simultaneously.

    I absolutely don't see how this is a problem with semver, it is not the responsibility of semver to tell a language how packages should be isolated and loaded. That is a problem of a) the language and b) dependency resolution in the package manager.

    > SemVer is a product of Ruby community.

    Bundler, by design, does not allow the above, instead having a flat, consistent vision of dependencies.

    NPM though, allows that, allowing nested dependencies, by virtue of the ES6 module system importing to a variable in a lexical scope. Go also allows that, by virtue of its imports being scoped to a package (or file, I can't recall).

    Ruby can do that kind of isolation too. In fact, I've done it: https://github.com/lloeki/pak

    Unless packages leak to globals each version is oblivious to the one next to it. Unless package dependents communicate with one another using objects from the packages they can happily live in their own world. Now if they do, then it's like hitting a HTTP /api/v1 with an HTTP /api/v2 client and somehow wishing things will work. Either the package (which should not leak globals / disallow cross-version communication) or the language (which should not allow leaking globals / detect incompatible communication).

    None of this is the responsibility of semver.

  • Rails is not written in Ruby
    4 projects | news.ycombinator.com | 4 Feb 2022
    (the link jumps to some random place for me)

    Well, you always could, it was just a bit more involved:

    https://github.com/lloeki/pak

comver

Posts with mentions or reviews of comver. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-03.

What are some alternatives?

When comparing pak and comver you can also consider the following projects:

pragmaticversioning - Pragmatic versioning optimizes for communicating changes to a package to package consumers, while retaining simple semantics for package maintainers.