AlchemyCMS / alchemy_cms

Alchemy is the Open Source Rails CMS framework for the component based web that can be used as classic server side rendered or headless CMS.
https://www.alchemy-cms.com
BSD 3-Clause "New" or "Revised" License
846 stars 315 forks source link

dependency on turbolinks 1.3.0 #438

Closed tomg65 closed 10 years ago

tomg65 commented 10 years ago

Hi,

I tried to install master branch into a existing app (rails 4.0.0)

Got the follwing error on bundle install:

Resolving dependencies...
Bundler could not find compatible versions for gem "turbolinks":
  In Gemfile:
    alchemy_cms (>= 0) ruby depends on
      turbolinks (~> 1.3.0) ruby

turbolinks (2.0.0)

in Gemfile are:

gem 'rails', '4.0.0' 
gem 'turbolinks'

... etc.

Is it necessary to downgrade the turbolinks gem?

greetings tomg

tvdeyen commented 10 years ago

We have to test Turbolinks 2.0 before we can raise the version. Turbolinks 2.0 now also fires jQuery ajaxSuccess. We have to see if this brings any regressions.

So, if you don't explicitly depend on Turbolinks 2.0 (Your Gemfile allows any version), you can install Alchemy with:

$ bundle update turbolinks alchemy_cms

This should help.

tvdeyen commented 10 years ago

Updates Turbolinks e26d6ba41799d4389e2845ad611c5331d579cc91

Please test and see, if you can find any regressions.

tomg65 commented 10 years ago

cool - thx Will test it.