-
Notifications
You must be signed in to change notification settings - Fork 6
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
Weird error after upgrade #6
Comments
+1 |
Cells-erb 0.1.0 has a very breaking change since it dropped support for #concat (so basically any rails tag helper will fail) It should actually have been versionned 1.0.0 following semVer rules since this is quite a breaking change. I actually suggest rolling back to only have it in a major version number @apotonick |
We don't use semver because it's fundamentally broken: once your library has a certain complexity you have to bump up the major version every other day, especially with a dynamic fuzzy language like Ruby that allows monkeypatching, no static typing ,etc. With this gem, we could've done that, though. 😉 We decided that with the new formular form render gem, we don't support the crappy Rails |
@Startouf Can you point me to some usages where 0.1.0 fails? The reason I ask is we use |
Sorry didn't see that last message @apotonick only the one before. |
This version change also broke one of the applications we recently started maintaining. Even though you are of the opinion that semver is fundamentally broken (which ultimately I understand), you are still versioning your gems with the semver format. What was the point of bumping the minor version in this case if you are not using semver? I guess ultimately what I'm getting at is that the majority of users are going to see the semver format of versioning (i.e. As far as the usage that caused the application to break, I am not entirely sure as we aren't the original authors and I'm not intimately familiar with this library. After an initial glance, I see two usages of |
@codebycliff I understand your confusion, but, frankly, we're talking about a gem here that doesn't even have a major release, yet. Wouldn't it be odd to release a Anyway, we've been using this gem in many Rails applications without any problems, since we do not use I'm sorry if your application is broken now. I am wondering what is the problem, though, because ERBse has capture support (really cool capture support actually since it doesn't write to global variables) and I do not know about any problems with, say, |
Hi!
I'm using cells-erb on my project and I had a really strange error after upgrading it:
I don't know where can this come from, as the line only has html on it. I saw many changes in cells-erb and erbse, so I decide to downgrade to 0.0.9 for the moment.
We're in a rush at the moment, but I'll try to provide a reproducible case next month.
The text was updated successfully, but these errors were encountered: