Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Adding frozen_string_literal pragma to Railties. | Pat Allan | 2017-08-14 | 1 | -0/+2 |
| | |||||
* | Revert "Merge pull request #29540 from kirs/rubocop-frozen-string" | Matthew Draper | 2017-07-02 | 1 | -1/+0 |
| | | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa. | ||||
* | Enforce frozen string in Rubocop | Kir Shatrov | 2017-07-01 | 1 | -0/+1 |
| | |||||
* | Start Rails 5.2 development | Matthew Draper | 2017-03-22 | 1 | -2/+2 |
| | |||||
* | Preparing for 5.1.0.beta1 release | Rafael Mendonça França | 2017-02-23 | 1 | -1/+1 |
| | |||||
* | Start Rails 5.1 development :tada: | Rafael Mendonça França | 2016-05-10 | 1 | -2/+2 |
| | |||||
* | Preparing for 5.0.0.rc1 release | Rafael Mendonça França | 2016-05-06 | 1 | -1/+1 |
| | |||||
* | Prep Rails 5 beta 4 | eileencodes | 2016-04-27 | 1 | -1/+1 |
| | |||||
* | Prep release for Rails 5 beta3 | eileencodes | 2016-02-24 | 1 | -1/+1 |
| | |||||
* | Preparing for Rails 5.0.0.beta2 | Sean Griffin | 2016-02-01 | 1 | -1/+1 |
| | |||||
* | bumping version | Aaron Patterson | 2016-01-25 | 1 | -1/+1 |
| | |||||
* | Change `alpha` to `beta1` to prep for release of Rails 5 | eileencodes | 2015-12-18 | 1 | -1/+1 |
| | | | | :tada: :beers: | ||||
* | Start Rails 5 development :tada: | Rafael Mendonça França | 2014-11-28 | 1 | -3/+3 |
| | | | | | | | We will support only Ruby >= 2.1. But right now we don't accept pull requests with syntax changes to drop support to Ruby 1.9. | ||||
* | Prepare for 4.2.0.beta4 release | Godfrey Chan | 2014-10-30 | 1 | -1/+1 |
| | |||||
* | Preparing for 4.2.0.beta2 release | Rafael Mendonça França | 2014-09-26 | 1 | -1/+1 |
| | |||||
* | Preparing for 4.2.0.beta1 release | David Heinemeier Hansson | 2014-08-19 | 1 | -1/+1 |
| | |||||
* | Introduce `Rails.gem_version` | Prem Sichanugrist | 2014-03-05 | 1 | -0/+15 |
This method return `Gem::Version.new(Rails.version)`, suggesting a more reliable way to perform version comparison. Example: Rails.version #=> "4.1.2" Rails.gem_version #=> #<Gem::Version "4.1.2"> Rails.version > "4.1.10" #=> false Rails.gem_version > Gem::Version.new("4.1.10") #=> true Gem::Requirement.new("~> 4.1.2") =~ Rails.gem_version #=> true This was originally introduced as `.version` by @charliesome in #8501 but got reverted in #10002 since it was not backward compatible. Also, updating template for `rake update_versions`. |