aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/version.rb
Commit message (Collapse)AuthorAgeFilesLines
* Use frozen string literal in actionview/Kir Shatrov2017-07-241-0/+2
|
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
| | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa.
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
|
* applies new string literal convention in actionview/libXavier Noria2016-08-061-1/+1
| | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
* Introduce `Rails.gem_version`Prem Sichanugrist2014-03-051-7/+4
| | | | | | | | | | | | | | | | | | | 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`.
* update version to 4.2.0.alphaYves Senn2014-02-231-1/+1
|
* Preparing for 4.1.0.beta2 releaseRafael Mendonça França2014-02-181-1/+1
|
* Get ready to release 4.1.0.beta1David Heinemeier Hansson2013-12-171-1/+1
|
* Bump up version, fix module nameŁukasz Strzałkowski2013-06-201-4/+4
|
* Add bare actionview gem to the root directoryPiotr Sarnacki2013-06-201-0/+11
This commit creates structure for Action View gem and is first of a series of commits extracting Action View from Action Pack.