Martin Gamsjaeger

Results 35 comments of Martin Gamsjaeger

I added a minimal Gemfile plus a bit explanation at http://pastie.org/759302

So I tried manually building the .gem files from the .gemspec files, adding them to gems/cache and putting them into git. However, when i run _gem bundle_ on a fresh...

Additionally, the generated environment.rb of course requires the libs from below the dirs/whatever_gem folder, where they haven't been properly built. So it seems to me that it's just not possible...

@mbj agreed, basically. what about symmetry in case of `anima.remove`?

@mbj i'm just wondering what `concord.remove(:foo)` would do, i.e. how it would call `super()`.

@mbj The way I see it, `concord.remove(:foo)` doesn't make any sense because the superclass constructor would expect `foo` and there's no way substitute that automatically. However, `concord.add(:foo)` makes perfect sense,...

@mbj that's the thing, i think it'd be cleaner to call `super`. At least it's what i would expect. Like I said, for "pure" concord generated `#initialize` it might not...

I should maybe clarify a bit. It seems like `Relation#sort` actually fulfills its promise, but it does so "in memory" only. The actual operations do not get pushed down to...

@dkubb seems like the following change to `axiom-do-adapter` fixes this issue: ``` diff diff --git a/lib/axiom/relation/gateway.rb b/lib/axiom/relation/gateway.rb index 7274cc3..27d0430 100644 --- a/lib/axiom/relation/gateway.rb +++ b/lib/axiom/relation/gateway.rb @@ -10,7 +10,7 @@ module Axiom...