1

I am following along in a Treehouse tutorial where the instructor is using ruby 1.9.3 with rails 3.2.13. I've already tried gem uninstall rails and selected 4.1.1 as well as gem uninstall railties and selected 4.1.1.

I have even specified in my gemfile to use gem 'rails', '3.2.13'

When I run bundle, rails auto updates to 4.1.1. Is there a possible way to set 3.2.13 as default or even possibly force-block rails 4.1.1?

Andrew Marshall
  • 95,083
  • 20
  • 220
  • 214
Jud
  • 1,324
  • 3
  • 24
  • 47

1 Answers1

0

Try this:

Specifying rails version to use when creating a new application

What they tell you to do:

rails _2.1.0_ new myapp 

So change it to fit your situation

rails _3.2.13_ new treehouse
Community
  • 1
  • 1
Ryan K
  • 3,985
  • 4
  • 39
  • 42