public
Fork of rails/rails
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/edwin/rails.git

The rails Network Feed   feed

duncanbeevers committed to duncanbeevers/rails Sat Nov 22 22:57:56 -0800 2008

ddd9043b37931125234d35657bccdfe363bc2b07

Merge branch 'master' of git://github.com/rails/rails

duncanbeevers committed to duncanbeevers/rails Sat Nov 22 22:57:56 -0800 2008

7ec02d9f7feacf7c2e5e51066e40fbe3a3de45d8

Merge branch 'master' of git://github.com/rails/rails

duncanbeevers committed to duncanbeevers/rails Sat Nov 22 22:57:45 -0800 2008

eb5e9f248d6f3e8ca7097f204f79cdd348845fd0

Merge branch 'master' of git://github.com/rails/rails

duncanbeevers committed to duncanbeevers/rails Sat Nov 22 22:57:42 -0800 2008

ea25a55d5a78eeb374b48589061b3864a372ab0a

Merge branch 'master' of git://github.com/rails/rails

duncanbeevers committed to duncanbeevers/rails Sat Nov 22 22:57:39 -0800 2008

a0e04d6ca86b27beeb29a69b56e43b0759a6ab02

Merge branch 'master' of git://github.com/rails/rails

duncanbeevers committed to duncanbeevers/rails Sat Nov 22 22:57:36 -0800 2008
duncanbeevers committed to duncanbeevers/rails Sat Nov 22 22:57:35 -0800 2008

45bd8c9592419ad3b6e63e94db9334acc2e3e146

Merge branch 'master' of git://github.com/rails/rails

jeremy committed to rails/rails Sat Nov 22 22:52:10 -0800 2008

4d2ccbb364b62275bad142d9a0b66ee7fd0c424a

Use a relative require for bundled rack lib

cwninja committed to rails/rails Sat Nov 22 22:52:09 -0800 2008

6b06c9870aef6c44b99ae07ae8ddcbc4bfb13221

Changed the fallback String#each_char to use valid 1.9 syntax.

cwninja committed to rails/rails Sat Nov 22 22:51:28 -0800 2008

a1fe469d70406242f8cde7e5bf4e2d3454c6214a

Changed the fallback String#each_char to use valid 1.9 syntax.

cwninja committed to rails/rails Sat Nov 22 22:51:26 -0800 2008

b696f047b5794df207e749269aff5b9536b25de3

Changed the fallback String#each_char to use valid 1.9 syntax.

gargatron started watching rails Sat Nov 22 21:51:37 -0800 2008
rails is at rails/rails
ZhangHanDong commented on rails/rails Sat Nov 22 20:36:50 -0800 2008
Comment in 22af62c:

/work/test_222>rails -v
Rails 2.2.2
/work/test_222>cs
Loading development environment (Rails 2.2.2)
>> arr = [1,2,3,4,5,6,7,8,9,10]
=> [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
>> arr.first
=> 1
>> arr.second
=> 2
>> arr.third
=> 3
>> arr.fourth
=> 4
>> arr.fifth
=> 5
>> arr.sixth
NoMethodError: undefined method `sixth’ for [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]:Array
from (irb):7
>> arr.seventh
NoMethodError: undefined method `seventh’ for [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]:Array
from (irb):8
>> arr.eighth
NoMethodError: undefined method `eighth’ for [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]:Array
from (irb):9
>> arr.ninth
NoMethodError: undefined method `ninth’ for [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]:Array
from (irb):10
>> arr.tenth
NoMethodError: undefined method `tenth’ for [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]:Array
from (irb):11
why ???
ps, cs command = ./script/console

dwaynemac started watching rails Sat Nov 22 19:42:49 -0800 2008
rails is at rails/rails
jeremy committed to rails/rails Sat Nov 22 19:29:21 -0800 2008

e7208d382a3d8bae9ab13d8a380b1a2a05fd99b0

Get ActiveSupport::TestCase working with classic Test::Unit and MiniTest. Fix broken Mocha + MiniTest. Assume ruby-core applies patch #771 fixing libraries which extend Test::Unit.

jeremy committed to rails/rails Sat Nov 22 19:29:20 -0800 2008

c79fb32e93c7ed9d5c0f39194ee48183faf3b5c9

Ruby 1.9 compat: don't shadow local var with block arg

jeremy committed to rails/rails Sat Nov 22 19:29:19 -0800 2008

dc07c0e02b16031e5ff7cf650f0894654d525a03

Fix indentation mismatches

jeremy committed to rails/rails Sat Nov 22 19:29:18 -0800 2008

0e2d18e415118afed2df148e5d7302ef0361b569

Extract state query method definition and quiet method redefinition warning.

jeremy committed to rails/rails Sat Nov 22 19:29:17 -0800 2008

0492759db338a01623672674408a0bed62951ac6

MiniTest compat: don't shadow @name

jeremy committed to rails/rails Sat Nov 22 19:29:16 -0800 2008

51383c57a2f556d1ea44c93deb68e7b70f8c6e35

MiniTest compat: don't check for test/unit's assertion in particular

jeremy committed to rails/rails Sat Nov 22 19:29:15 -0800 2008

a75354fae11957b212ac550483208469f3935d4a

Ruby 1.9 compat: don't use defined? on complex expressions

jeremy committed to rails/rails Sat Nov 22 19:29:14 -0800 2008

f927a60d0fa33f3e0fc3c0c891ae7657a227707f

Require mocha >= 0.9.0 for AS tests

dancroak commented on rails/rails Sat Nov 22 18:10:00 -0800 2008
Comment in f42c77f:

Very pleased to see this, especially the backtrace_silencers.rb initializer. Nice work!

kastner committed to kastner/rails Sat Nov 22 17:34:15 -0800 2008

94157a9989c321545063b75c64653d4af9bd31a9

Task to rename application.rb to application_controller.rb for updating from 2.2 to 2.3 (ticket: http://rails.lighthouseapp.com/projects/8994/tickets/1439-make-railsupdate-rename-applicationrb-to-application_controllerrb)

mannd started watching rails Sat Nov 22 16:37:48 -0800 2008
rails is at josh/rails
ricardochimal committed to adamwiggins/rails Sat Nov 22 16:34:52 -0800 2008

a05b6c53b36465f42d7e8c886665ed508734cf0e

page caching removes the cookies and sets a 5 min cache-control timeout

ricardochimal committed to adamwiggins/rails Sat Nov 22 16:34:52 -0800 2008

164dfba11283a346a75d3aca8faa6eb3d4c494e2

ignore javascript/stylesheet cache flag, heroku_rack is now setting a header to cache static files for long periods of time

ricardochimal committed to adamwiggins/rails Sat Nov 22 16:34:52 -0800 2008

655e35480816e36ba12b113dc8e4f540a4c007c3

added heroku_mem_cache_store, redefining the default cache store to use our memcache when available

adamwiggins committed to adamwiggins/rails Sat Nov 22 16:34:51 -0800 2008

f4996db4cfb85277fe1f7ffc32f3c1f66edf8519

database config from DATABASE_URL in environment, if exists

kastner forked rails/rails Sat Nov 22 16:12:37 -0800 2008
Forked repository is at kastner/rails