Where can I find a list of different versions of rails?

I had a problem with rails 3.0.7 that led me to this subquery:

Where can I find a list of rails versions for 3.0, for example. 3.0.0, 3.0.1, 3.0.11 ,. etc.?

I searched googled and looked at wikipedia and SO and a variation of the main ruby ​​sites, but cannot find this information on the "version list".

+7
source share
4 answers

You can see all the published stones at rubygems.org:

http://rubygems.org/gems/rails/versions

You can also see branches and tags on github:

https://github.com/rails/rails

+8
source

$ gem list -r --all rails

rails (3.2.2, 3.2.1, 3.2.0, 3.1.4, 3.1.3, 3.1.2, 3.1.1, 3.1.0, 3.0.12, 3.0.11, 3.0.10, 3.0.9, 3.0.8, 3.0.7, 3.0.6, 3.0.5, 3.0.4, 3.0.3, 3.0.2, 3.0.1, 3.0.0, 2.3.14, 2.3.12, 2.3.11, 2.3.10, 2.3.9, 2.3.8, 2.3.7, 2.3.6, 2.3.5, 2.3.4, 2.3.3, 2.3.2, 2.2.3, 2.2.2, 2.1.2, 2.1.1, 2.1.0, 2.0.5, 2.0.4, 2.0.2, 2.0.1, 2.0.0, 1.2.6, 1.2.5, 1.2.4, 1.2.3, 1.2.2, 1.2.1, 1.2.0, 1.1.6, 1.1.5, 1.1.4, 1.1.3, 1.1.2, 1.1.1, 1.1.0, 1.0.0, 0.14.4, 0.14.3, 0.14.2, 0.14.1, 0.13.1, 0.13.0, 0.12.1, 0.12.0, 0.11.1, 0.11.0, 0.10.1, 0.10.0, 0.9.5, 0.9.4.1, 0.9.4, 0.9.3, 0.9.2, 0.9.1, 0.9.0, 0.8.5, 0.8.0)

+13
source

You can find it on rubygems.org, see all versions of the rails

+1
source

You can find all the rails using github tags:

https://github.com/rails/rails/tags

0
source

All Articles