Commit Graph

26902 Commits

Author SHA1 Message Date
Vijay Dev
260999067e Some revisions to the release notes guide
Conflicts:

	railties/guides/source/3_2_release_notes.textile
2012-01-11 20:46:32 +05:30
Matt Jones
d0915ac2f9 add documentation explaining reorder behavior 2012-01-11 20:24:22 +05:30
codesnik
96d4da1719 Made an example a little more realistic 2012-01-11 20:24:17 +05:30
Santiago Pastorino
bb78804a5e Merge pull request #4408 from tomstuart/read-and-write-attribute-aliases
#[] and #[]= are no longer interchangeable with #read_attribute and #write_attribute
2012-01-11 12:10:59 -02:00
Santiago Pastorino
9c88005d97 Merge pull request #4404 from rizwanreza/edits-to-spastorino-upgrade-notes
Edits to spastorino's upgrade notes
2012-01-11 05:44:18 -08:00
Rizwan Reza
7be7710f52 Edits to spastorino's additions in 3.2 Release Notes 2012-01-11 17:09:37 +03:30
Aaron Patterson
77785c7806 FFFFFFFFUUUUUUUUUUUUUUUUUUUUUUUUU 💣 2012-01-10 13:24:15 -08:00
Aaron Patterson
5e04884bce deprecate the subdirectories parameter to migrations
Conflicts:

	activerecord/lib/active_record/migration.rb
2012-01-10 13:19:11 -08:00
Santiago Pastorino
03f62755e3 Add "What to update in your apps" section to the release notes guide
We should keep this up to date and the current version is probably wrong
and/or incomplete. HELP!!!
2012-01-10 18:22:33 -02:00
José Valim
ae14b71b70 Remove duplicated test line which was causing Ci failures on 1.8.7. 2012-01-10 20:51:45 +01:00
Santiago Pastorino
bda0ae76a8 Remove dead code 2012-01-10 16:46:26 -02:00
Santiago Pastorino
6f48fb3ad3 Add CHANGELOG entry 2012-01-10 16:36:18 -02:00
Santiago Pastorino
3375a093e9 Rails initialization with initialize_on_precompile = false should set assets_dir 2012-01-10 16:34:13 -02:00
Piotr Sarnacki
d65b766426 Fix http digest authentication with trailing '/' or '?' (fixes #4038 and #3228) 2012-01-10 04:42:46 +01:00
Piotr Sarnacki
79b12a0ffb Add original_fullpath and original_url methods to Request 2012-01-10 04:39:53 +01:00
Piotr Sarnacki
63305daeba Add ORIGINAL_FULLPATH to env
This behaves similarly to REQUEST_URI, but
we need to implement it on our own because
REQUEST_URI is not reliable.

Note that since PATH_INFO does not contain
information about trailing question mark,
this is not 100% accurate, for example
`/foo?` will result in `/foo` in ORIGINAL_FULLPATH
2012-01-10 04:39:43 +01:00
José Valim
a579d4bb5f Merge pull request #4352 from kennyj/improve_3694-2
[3-2-stable] Don't fork a process when assets:precompile:nondigest is invoked in assets:precompile:all.
2012-01-06 08:12:03 -08:00
kennyj
205674408b Don't fork a process when assets:precompile:nondigest is invoked in assets:precompile:all. Improve GH #3694. 2012-01-07 00:29:05 +09:00
Santiago Pastorino
6005736a98 Depend on coffee-rails 3.2.1 2012-01-05 15:31:17 -02:00
Aaron Patterson
867a7927ae Merge pull request #4311 from kuroda/3-2-negative_format
Infer currency negative format from positive one. (3-2-stable)
2012-01-05 09:18:24 -08:00
Tsutomu Kuroda
22f901cc9d Infer currency negative format from positive one.
When a locale file sets the format of the positive
currency value as '%n %u', the default negative
currency format should be '-%n %u'.

Cherry-picked from master (6724c8c8)
2012-01-05 11:08:09 +09:00
Santiago Pastorino
d268ef2f65 Bump to rc2 2012-01-04 18:59:41 -02:00
José Valim
0b24dc9148 Revert "AS::Callbacks: remove __define_runner"
Runners are used internally.

This reverts commit 40c8aa706a.
2012-01-04 21:29:05 +01:00
Jeremy Kemper
49a1017235 Add release notes URL to vendor/plugins deprecation warning. Update CHANGELOG. 2012-01-04 12:09:21 -07:00
Jeremy Kemper
d9e0c4a013 Clarify vendor/plugins deprecation warning 2012-01-04 11:49:19 -07:00
Aaron Patterson
d22592a05b Merge pull request #4282 from edgecase/order_after_reorder
correctly handle order calls after a reorder
2012-01-04 10:13:22 -08:00
Santiago Pastorino
f8df37bc01 Use sass-rails 3.2.3 2012-01-04 14:25:20 -02:00
Santiago Pastorino
3fb32cfe7c Revert "use pg 0.11.0 under ruby 1.8.7"
There's a new pg release, no need for this anymore
This reverts commit 0b5cda73e2.
2012-01-04 14:20:36 -02:00
Vijay Dev
4b2b595992 copy edits 2012-01-04 20:20:52 +05:30
Pablo Ifran
00a27c52ea improve doc in number helper options 2012-01-04 20:20:48 +05:30
Mike Gunderloy
20a4258c7d General editing pass over assets pipeline guide 2012-01-04 20:20:43 +05:30
Vijay Dev
bc36613f4d updates to 3.2 release notes 2012-01-04 20:10:32 +05:30
Kristian Freeman
6bcc1b89dc Final grammar checkup on 3.2 release notes. 2012-01-04 20:08:50 +05:30
José Valim
a10f30963d Merge pull request #4288 from kennyj/fix_4285-2
(3-2-stable) Fix GH #4285. Remove options when we record calling create_table
2012-01-03 23:43:26 -08:00
kennyj
6012970fea Fix GH #4285. Remove options when we record calling creat_table 2012-01-04 14:54:38 +09:00
Aaron Patterson
63f7a61246 When generating routes, the last defined named route wins. This is in
contrast to route recognition where the first recognized route wins.
This behavior will not exist in Rails 4.0.

See:

  https://github.com/rails/rails/issues/4245
  https://github.com/rails/rails/issues/4164
2012-01-03 14:00:24 -08:00
Aaron Patterson
e9122112fa Revert "Named Routes shouldn't override existing ones (currently route recognition goes with the earliest match, named routes use the latest match)"
This reverts commit 71d769e3b5.
2012-01-03 13:56:12 -08:00
Aaron Patterson
c4a29de0e0 Merge pull request #4283 from lest/fix-singleton-checking
use correct variant of checking whether class is a singleton
2012-01-03 13:12:02 -08:00
Santiago Pastorino
caa6cdeba1 Merge pull request #4281 from lest/3-2-changelog
add CHANGELOG entry for AS::Base64 deprecation
2012-01-03 12:10:59 -08:00
Sergey Nartimov
337ac054db add CHANGELOG entry for AS::Base64 deprecation 2012-01-03 23:08:28 +03:00
Santiago Pastorino
8c129f18d2 Pass extensions to javascript_path and stylesheet_path helpers. Closes #3417 2012-01-03 17:51:10 -02:00
José Valim
124536ed9b Merge pull request #4280 from lest/3-2-backport-callbacks
backport changes in AS::Callbacks
2012-01-03 11:31:00 -08:00
José Valim
d38dac8ea9 Override respond_to? since we are also overriding method_missing. 2012-01-03 20:27:38 +01:00
Bogdan Gusiev
40c8aa706a AS::Callbacks: remove __define_runner 2012-01-03 22:14:41 +03:00
Bogdan Gusiev
5b8d27000b Refactor AS::Callbacks
Extracted `__reset_runner` from `__define_runner`
And call it in proper places
2012-01-03 22:14:37 +03:00
Bogdan Gusiev
4e8286fe12 AS::Callbacks: improved __define_runner performance 2012-01-03 22:14:33 +03:00
Bogdan Gusiev
9f8f4c2871 AS::Callbacks: improve __define_runner perfomance 2012-01-03 22:14:27 +03:00
Santiago Pastorino
0d7d3a6e77 Add font_path helper method 2012-01-03 17:05:43 -02:00
Aaron Patterson
eafdf6c9bd Merge pull request #4279 from lest/fix-log
do not rewrite log during application bootstrap
2012-01-03 09:31:45 -08:00
Santiago Pastorino
ca24ee75af Merge pull request #4278 from kennyj/fix_rdoc_generating_problem
Use -e option instead of -c option (rake rdoc task).
2012-01-03 14:05:27 -02:00