aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
Commit message (Collapse)AuthorAgeFilesLines
* safe_constantize should handle wrong constant name NameErrors Fixes #4710Alex Tambellini2012-01-261-1/+1
|
* global variables may not be set depending on the match. fixes #4703Aaron Patterson2012-01-261-1/+4
|
* Deprecate DateTime.local_offsetbrainopia2012-01-252-2/+16
|
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-01-262-8/+8
|\
| * Change ActiveRecord::Errors to ActiveModel::Errors in guidesCarlos Antonio da Silva2012-01-252-8/+8
| | | | | | | | | | | | | | Use ActiveModel::Errors in inflection example docs as well. Also fixes wrong information and link to locale file related to Errors#full_messages in I18n guide.
* | Merge pull request #4646 from lest/patch-1Aaron Patterson2012-01-252-39/+30
|\ \ | | | | | | no need in separate MiniTest modules
| * | no need in separate MiniTest modulesSergey Nartimov2012-01-242-39/+30
| | |
* | | Merge pull request #4524 from nashby/datetime-18-codeJosé Valim2012-01-251-15/+0
|\ \ \ | |/ / |/| | remove ruby 1.8 related code
| * | remove ruby 1.8 related codeVasiliy Ermolovich2012-01-181-15/+0
| | |
* | | Merge pull request #4514 from brainopia/update_timezone_offetsAaron Patterson2012-01-241-1/+1
|\ \ \ | | | | | | | | Update time zone offset information
| * | | Update time zone offset informationbrainopia2012-01-181-1/+1
| |/ /
* | | Fix GH #4344. A defined callback in extended module is called too.kennyj2012-01-241-1/+1
| | |
* | | Merge pull request #4581 from kennyj/remove_unused_argumentAaron Patterson2012-01-231-3/+3
|\ \ \ | | | | | | | | Remove unused argument.
| * | | Remove unused argument.kennyj2012-01-221-3/+3
| | |/ | |/|
* | | Merge pull request #4575 from carlosantoniodasilva/remove-test-pendingJosé Valim2012-01-212-22/+0
|\ \ \ | |/ / |/| | Remove ActiveSupport::TestCase#pending, use `skip` instead
| * | Remove ActiveSupport::TestCase#pending, use `skip` insteadCarlos Antonio da Silva2012-01-212-22/+0
| | |
* | | Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-01-212-24/+24
|\ \ \ | |/ / |/| |
| * | Why do we even need a constant here? A variable is fine.Semyon Perepelitsa2012-01-211-4/+4
| | |
| * | TaggedLogging wraps an object, not a class.Semyon Perepelitsa2012-01-211-1/+1
| | |
| * | Do not use the same Logger constant for class (from stdlib) and for instance ↵Semyon Perepelitsa2012-01-211-4/+4
| | | | | | | | | | | | (from the example)
| * | Fix indentation in code example of DelegationTomasz Zurkowski2012-01-201-19/+19
| | |
* | | Replace regexp matching with a simple string manipulation.Semyon Perepelitsa2012-01-211-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using regexp looks like overkill here and is also 2x slower. user system total real string 0.020000 0.000000 0.020000 ( 0.016256) regexp 0.030000 0.000000 0.030000 ( 0.035360) require "benchmark" names = ("a".."z").map { |c| c + "a" * rand(5..10) + "=" * rand(0..1) }.map(&:to_sym) puts names n = 1000 Benchmark.bmbm do |x| x.report "string" do n.times do names.each do |name| string_name = name.to_s string_name.chomp!('=') string_name end end end x.report "regexp" do n.times do names.each do |name| name.to_s =~ /(.*)=$/ $1 end end end end
* | | pushed broadcasting down to a moduleAaron Patterson2012-01-201-46/+34
| | |
* | | defined the actual logger signatureAaron Patterson2012-01-201-2/+2
| | |
* | | made the broadcast logger quack more like a loggerAaron Patterson2012-01-201-0/+24
| | |
* | | added the backtrace so errors can be foundAaron Patterson2012-01-201-1/+1
| | |
* | | add a broadcasting logger so we can split logsAaron Patterson2012-01-201-0/+23
| | |
* | | move tagged logging to a module, stop proxying every method callAaron Patterson2012-01-191-36/+32
| | |
* | | Convert URI.parser.parse to URI.parse, and remove ruby 1.8.x code.kennyj2012-01-191-1/+1
|/ /
* / Test::Unit::Collector::ObjectSpace is not present anymoreRafael Mendonça França2012-01-181-10/+0
|/
* simplify some TaggedLogging methodsSergey Nartimov2012-01-181-2/+2
|
* remove unused requiresSergey Nartimov2012-01-182-5/+0
|
* AS::Callbacks: Refactor :per_key optionBogdan Gusiev2012-01-171-35/+7
|
* use thread variable in TaggedLoggingSergey Nartimov2012-01-171-3/+2
| | | | previous solution can cause race conditions under GIL-free ruby implementations
* Merge pull request #4432 from lest/patch-1Santiago Pastorino2012-01-121-28/+0
|\ | | | | to_date, to_time, and to_datetime Time methods present in ruby 1.9
| * to_date, to_time, and to_datetime Time methods present in ruby 1.9Sergey Nartimov2012-01-131-28/+0
| |
* | warns against using temporary subscribersXavier Noria2012-01-121-0/+4
|/
* deprecates Module#local_constant_namesXavier Noria2012-01-122-4/+14
|
* fixes in api docsVijay Dev2012-01-132-3/+3
|
* AS::Callbacks: remove unused runnerBogdan Gusiev2012-01-121-16/+3
|
* Symbol#[] method presents in Ruby 1.9Sergey Nartimov2012-01-072-3/+3
|
* spec class names can possibly be nil in mt/s < 2.6.1, so work around thatAaron Patterson2012-01-061-0/+6
|
* Merge pull request #4360 from rafaelfranca/patch-1Aaron Patterson2012-01-061-7/+7
|\ | | | | Remove more references to Test::Unit
| * Whitespaces :scissors:Rafael Mendonça França2012-01-061-7/+7
| |
* | register spec subclasses for people who specAaron Patterson2012-01-061-1/+7
| |
* | require minitest rather than test/unitAaron Patterson2012-01-061-1/+1
| |
* | backport assert_not_sameAaron Patterson2012-01-061-0/+1
| |
* | require test/unit and sort test orderAaron Patterson2012-01-061-0/+6
| |
* | started converting AS::TestCase to minitestAaron Patterson2012-01-061-2/+12
|/
* just mix the run method in for minitestAaron Patterson2012-01-061-14/+11
|