maccman / bowline

Ruby/JS GUI and Binding framework (deprecated)
http://bowlineapp.com
MIT License
637 stars 32 forks source link

Gem::DependencyError #35

Open CristhianBoujon opened 12 years ago

CristhianBoujon commented 12 years ago

Hello all,

I run: gem install bowline

and I get the error:

ERROR: While executing gem ... (Gem::DependencyError) Unable to resolve dependencies: activemodel requires i18n (~> 0.5.0)

But I've I18n 0.6.0

Can anyone help me, please?

fernandokosh commented 12 years ago

Same here. I've installed activemodel and i18n by hand, but not works.

jonathanbeebe commented 12 years ago

I'm getting the same thing. On OS X 10.7.

UPDATE: I fixed the issue by running:

sudo gem install supermodel

It will install the needed activemodel and i18n version. Then, you can run:

sudo gem install bowline

From there installation should work.

lokebharti commented 12 years ago

Had the same problem on Ubuntu 12.04. Jonathanbeebe's solution fixes it.

christiangenco commented 12 years ago

I believe @jonathanbeebe 's solution works because it's installing version 0.5.0 of i18n, which can be done more directly by:

gem install i18n --version 0.5.0
rpattabi commented 12 years ago

@jonathanbeebe and @christiangenco Thanks!

pratikraj commented 12 years ago

It's good sound @jonathanbeebe, running at track. @christiangenco : It is depended on many other files too.

JoeWoo commented 11 years ago

thanks a lot,both solutions fixes it.

ghost commented 11 years ago

Thanks @jonathanbeebe

campeterson commented 11 years ago
gem install i18n --version 0.5.0 

Worked great for me too.

endotakashi1992 commented 10 years ago

Thanks.I work. ARIGATO.