Hi, On Sun, May 29, 2016, at 09:36, Graham Menhennitt wrote: > I'm trying to install rails 5. I've tried both beta4 and rc1, but both > fail > with the same problem - installing the turbolinks gem. There seem to be a > number of versions of the gem on RubyGems beta1 - beta4. There also seems > to be beta5 (but it's not listed there). But I can't install any of them. > It seems to be trying to build from the beta2 version of the -source gem, > but that version doesn't exist. >
I don't know other proper way but adding turbolinks-source in the Gemfile works. $ cat Gemfile source "https://rubygems.org" gem "turbolinks", "~> 5.0.0.beta2" gem "turbolinks-source", "~> 5.0.0.beta2" $ bundle --path vendor/bundle Fetching gem metadata from https://rubygems.org/................. Fetching version metadata from https://rubygems.org/.. Resolving dependencies... Installing turbolinks-source 5.0.0.beta5 Using bundler 1.11.2 Installing turbolinks 5.0.0.beta2 Bundle complete! 2 Gemfile dependencies, 3 gems now installed. Bundled gems are installed into ./vendor/bundle. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/1464512946.876859.621802217.34AE6C3B%40webmail.messagingengine.com. For more options, visit https://groups.google.com/d/optout.

