index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activesupport
/
test
/
core_ext
Commit message (
Expand
)
Author
Age
Files
Lines
*
Speedup String#blank? and remove some overspecified tests.
Jeremy Kemper
2007-11-14
1
-39
/
+4
*
Cater for DST changes when converting Times to DateTimes. Closes #10068 [gbu...
Michael Koziarski
2007-11-05
3
-6
/
+30
*
Add new superclass_delegating_accessors. Similar to class inheritable attrib...
Michael Koziarski
2007-10-29
1
-0
/
+105
*
Hash#to_xml handles symbol values. Closes #9954.
Jeremy Kemper
2007-10-23
1
-2
/
+5
*
Hash#symbolize_keys behaves well with integer keys. Closes #9890.
Jeremy Kemper
2007-10-16
1
-0
/
+6
*
Add a time to duplicable tests
Jeremy Kemper
2007-10-15
1
-1
/
+1
*
object.duplicable? returns true if object.dup is safe. False for nil, true, f...
Jeremy Kemper
2007-10-15
1
-0
/
+22
*
Time, Date and DateTime #advance accept :weeks option. Closes #9866.
Jeremy Kemper
2007-10-13
3
-4
/
+16
*
Fix Time#years_ago and #years_since from leap days. Closes #9865.
Jeremy Kemper
2007-10-13
1
-0
/
+2
*
Time and DateTime#advance accept :hours, :minutes, and :seconds options. Clos...
Jeremy Kemper
2007-10-13
2
-3
/
+25
*
Fix Date#years_ago and #years_since from leap days. Closes #9864.
Jeremy Kemper
2007-10-13
2
-0
/
+4
*
Refactor Time and Date#months_since and #months_ago to use #advance. Closes #...
Jeremy Kemper
2007-10-13
3
-0
/
+12
*
Style update for new Range extensions
Jeremy Kemper
2007-10-09
1
-6
/
+5
*
* Add Range#overlaps?(range), Range#include?(range), and Range#step without a...
Michael Koziarski
2007-10-08
1
-0
/
+51
*
Some platforms include colon in timezone offset, some don't. References #9744.
Jeremy Kemper
2007-10-03
2
-6
/
+6
*
Ruby 1.9 compat, consistent load paths
Jeremy Kemper
2007-10-02
1
-3
/
+3
*
Fixed Date#xmlschema for dates outside the range of what can be created with ...
David Heinemeier Hansson
2007-10-01
2
-2
/
+23
*
Ruby 1.9 compat for hash_ext_test
Jeremy Kemper
2007-09-29
1
-1
/
+1
*
Fixed spelling errors (closes #9706) [tarmo/rmm5t]
David Heinemeier Hansson
2007-09-28
3
-3
/
+3
*
Alias Object#send to send! for Ruby 1.9 forward compatibility.
Jeremy Kemper
2007-09-27
1
-0
/
+5
*
Mark String#each_char test failing with Ruby 1.9
Jeremy Kemper
2007-09-27
1
-0
/
+1
*
Extract InflectorTestCases so both inflector and string inflections tests can...
Jeremy Kemper
2007-09-27
1
-11
/
+14
*
Object#copy_instance_variables_from Ruby 1.9 compat
Jeremy Kemper
2007-09-27
1
-6
/
+6
*
Mark another Duration test failing with Ruby 1.9
Jeremy Kemper
2007-09-27
1
-0
/
+1
*
Prefer class_eval with block to many sends for Ruby 1.9 compat
Jeremy Kemper
2007-09-27
1
-53
/
+72
*
Hax to workaround private send for Ruby 1.9. Consider moving to send! and ali...
Jeremy Kemper
2007-09-27
1
-7
/
+7
*
Use instance_variable_defined? instead of instance_variables.include? to acco...
Jeremy Kemper
2007-09-27
2
-11
/
+11
*
Backport Object#instance_variable_defined? for Ruby < 1.8.6.
Jeremy Kemper
2007-09-27
1
-0
/
+7
*
Mark Duration test failing with Ruby 1.9
Jeremy Kemper
2007-09-27
1
-2
/
+3
*
Date/Time/DateTime Ruby 1.9 compat
Jeremy Kemper
2007-09-27
2
-3
/
+5
*
Change test for ruby 1.9 crash
Jeremy Kemper
2007-09-27
1
-6
/
+4
*
Object#instance_exec produces fewer garbage methods.
Jeremy Kemper
2007-09-24
1
-2
/
+9
*
Object.subclasses_of includes anonymous subclasses.
Jeremy Kemper
2007-09-23
1
-1
/
+8
*
More tests (closes #7066) [sethladd]
David Heinemeier Hansson
2007-09-22
1
-0
/
+15
*
Improve tests (closes #7166) [zackchandler]
David Heinemeier Hansson
2007-09-22
1
-2
/
+33
*
Fix tests across DST (closes #9020) [mpalmer]
David Heinemeier Hansson
2007-09-22
1
-5
/
+7
*
Hash#to_xml doesn't double-unescape. Closes #8806.
Jeremy Kemper
2007-09-17
1
-0
/
+28
*
Added Array#rand (closes #9170) [norbert]
David Heinemeier Hansson
2007-09-15
1
-0
/
+16
*
Some 1.9 forward compatibility
Jeremy Kemper
2007-09-14
3
-11
/
+13
*
Fix activesupport atomic_write tests when Dir.tmpdir is on another partition....
Michael Koziarski
2007-09-06
1
-2
/
+2
*
Allow Float#round to take a precision argument. Closes #8626 [norbert]
Michael Koziarski
2007-09-02
1
-0
/
+25
*
Fix Time#advance bug when trying to advance a year from leap day. Closes #86...
Rick Olson
2007-08-03
4
-0
/
+13
*
Added Array#extract_options! to encapsulate the pattern of getting an options...
David Heinemeier Hansson
2007-07-24
1
-0
/
+9
*
Let alias_attribute work with attributes with initial capital letters (legacy...
Michael Koziarski
2007-07-19
1
-1
/
+24
*
Support for non heterogeneous arrays when serializing to xml. Unless guessabl...
Tobias Lütke
2007-07-09
1
-0
/
+17
*
Added Hash#except which is the inverse of Hash#slice -- return the hash excep...
David Heinemeier Hansson
2007-07-09
1
-0
/
+13
*
Improve various test coverage. Closes #8676 [kamal]
Jeremy Kemper
2007-06-25
4
-0
/
+39
*
Added proper handling of arrays. Closes #8537 [hasmanyjosh]
Rick Olson
2007-06-21
2
-6
/
+41
*
Oh please. References #8646.
Jeremy Kemper
2007-06-14
1
-1
/
+1
*
Maybe passing an explicit offset mollifies CIA. References #8646.
Jeremy Kemper
2007-06-14
1
-1
/
+1
[next]