Rails 4.1.0 beta1 released
weblog.rubyonrails.org
Rails 4.1.0 beta1 released
1–10 of 61 posts
Re: Rails 4.1.0 beta1 released
#2Really like the six-month release pace.
Re: Rails 4.1.0 beta1 released
#3Surprised to see enum support finally come to activerecord.
Re: Rails 4.1.0 beta1 released
#4 > This new release also follows our new policy of targeting a minor release every
> six months. The idea being that the jump from minor to minor shouldn't try to
> include everything under the sun. Just whatever is ready after the six month
> mark.
EDIT: I have been misinformed. I didn't participate a lot in this release, and I missed some discussion. If you read my previous comment, I mentioned this was a policy change, which isn't technically true. Anyway, on to what is true:People have always complained that upgrading Rails has been difficult, we want to make that better. Releasing often will help us make a smoother upgrade path, which should help with these issues.
Re: Rails 4.1.0 beta1 released
#5Re: Rails 4.1.0 beta1 released
#6Wow. Well, having enough faith to run Basecamp off of it -- and the fact that 4.0 was a very smooth transition from 3.2 -- is enough reason to play around with this beta for a project.
Edit: nevermind, don't think I can handle this feature removal: https://github.com/rails/rails/commit/c300dca9963bda78b8f358...
/s
Re: Rails 4.1.0 beta1 released
#7So excited about all of it. Native enum is a blessing.
Took me a while to figure it out but here is the required line for your Gemfile:
gem 'rails', '4.0.1.beta1'
# This works too, but isn't required (thanks to cantoniodasilva's comment below)
# gem 'rails', github: 'rails/rails', tag: 'v4.1.0.beta1'
Booya! Very excited to put it through the paces of this new app I am working on.Re: Rails 4.1.0 beta1 released
#8> In fact, we're already running beta1 in production for Basecamp, so you know it's been taking a good beating. This helped us catch a couple of performance regressions, and we've verified that everything is still spiffy fast on Basecamp. Wow. Well, having enough faith to run Basecamp off of it -- and the fact that 4.0 was a very smooth transition from 3.2 -- is enough reason to play around with this beta for a proje…
Re: Rails 4.1.0 beta1 released
#9Re: Rails 4.1.0 beta1 released
#10The second issue I have is `secrets` should be entirely removed from the framework. These settings should NOT be stored at the file level, it should be handled by environment flags. I feel this is a fundamentally broken feature.
Spring is neat, was it just a port of Zeus into Rails?