aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
Commit message (Collapse)AuthorAgeFilesLines
* Use more descriptive method namesNorman Clarke2012-01-052-8/+8
|
* Move include to top of class for clarityNorman Clarke2012-01-051-2/+1
|
* Remove unnecessary requires/encoding commentNorman Clarke2012-01-051-3/+0
|
* Replace Unicode.u_unpack with String#codepointsNorman Clarke2012-01-055-38/+5
|
* Remove multibyte utilsNorman Clarke2012-01-053-140/+1
| | | | This is neither a public API, nor used internally, so let's remove it.
* Remove "_codepoints" from compose/decomposeNorman Clarke2012-01-052-9/+9
|
* Remove unused code.Norman Clarke2012-01-051-25/+0
|
* Document method definitionNorman Clarke2012-01-051-0/+2
|
* Just use Ruby's String#[]=Norman Clarke2012-01-052-46/+0
|
* Assume Encoding supportNorman Clarke2012-01-051-5/+1
|
* Update to Unicode 6.0Norman Clarke2012-01-052-1/+1
|
* Remove useless parensNorman Clarke2012-01-051-1/+1
|
* Just delegate a few methods directly to @wrapped_stringNorman Clarke2012-01-051-20/+3
|
* Merge branch 'refactor-multibyte-chars' of https://github.com/lest/rails ↵Norman Clarke2012-01-052-12/+6
|\ | | | | | | | | | | | | into multibyte Conflicts: activesupport/lib/active_support/multibyte/chars.rb
| * refactor AS::Multibyte::CharsSergey Nartimov2012-01-052-40/+6
| |
* | Make return value from bang methods match Ruby docsNorman Clarke2012-01-052-6/+12
| | | | | | | | | | The docs for the String class indicate that methods like `rstrip!` and others should return nil when they do not have an effect on the string.
* | Override #slice! to ensure proper return value.Norman Clarke2012-01-051-0/+4
| | | | | | | | | | The default pass-through to `method_missing` makes `#slice!` return `self` rather than the string that was sliced off.
* | Remove overidden slice and slice! methods.Norman Clarke2012-01-051-29/+1
| |
* | Fix incorrect behavior specified in test.Norman Clarke2012-01-051-1/+1
|/ | | | This test was actually specifying the opposite of what it should.
* Revert "AS::Callbacks: remove __define_runner"José Valim2012-01-041-3/+16
| | | | | | Runners are used internally. This reverts commit 40c8aa706adbb60ff9d289016fb9020d48969fea.
* simplify Class#descendants using singleton_class methodSergey Nartimov2012-01-041-1/+1
|
* Merge pull request #4298 from rafaelfranca/patch-2Aaron Patterson2012-01-046-69/+9
|\ | | | | Remove rescue block to require psych gem
| * No need to require psych since require yaml does that.Rafael Mendonça França2012-01-042-2/+0
| |
| * No need to override to_yaml method in ActiveSupport::TimeWithZoneRafael Mendonça França2012-01-041-7/+1
| |
| * No need to override to_yaml method in ActiveSupport::OrderedHashRafael Mendonça França2012-01-041-15/+0
| |
| * No need to override the to_yaml method in ActiveSupporte::SafeBufferRafael Mendonça França2012-01-041-5/+0
| |
| * No need to override the to_yaml method in BigDecimalRafael Mendonça França2012-01-041-15/+0
| |
| * No need to use rescue block to require psychRafael Mendonça França2012-01-044-29/+12
| |
| * No need to check if YAML::ENGINE is defined since ruby 1.9 does thatRafael Mendonça França2012-01-044-4/+4
| |
* | using the active support loggerKarunakar (Ruby)2012-01-041-2/+2
|/
* Whitespaces :scissors:Rafael Mendonça França2012-01-041-1/+1
|
* Add test to make sure that add two safe buffers always return a safe bufferRafael Mendonça França2012-01-041-0/+7
|
* use correct variant of checking whether class is a singletonSergey Nartimov2012-01-031-1/+1
|
* Merge pull request #4250 from lest/range-jsonXavier Noria2012-01-022-0/+8
|\ | | | | use #to_s to convert Range to json
| * use #to_s to convert Range to jsonSergey Nartimov2012-01-012-0/+8
| |
* | Merge pull request #4252 from lest/deprecate-activesupport-base64José Valim2012-01-027-42/+14
|\ \ | | | | | | remove ActiveSupport::Base64 in favor of ::Base64
| * | remove ActiveSupport::Base64 in favor of ::Base64Sergey Nartimov2012-01-027-42/+14
| |/
* | Merge pull request #4251 from castlerock/rename_ruby_debug_to_ruby_debug19José Valim2012-01-011-1/+1
|\ \ | | | | | | rename ruby-debug to ruby-debug19
| * | rename ruby-debug to ruby-debug19Vishnu Atrai2012-01-011-1/+1
| |/
* / fix a warning about grouped expressionsVijay Dev2012-01-011-1/+1
|/
* Merge pull request #4248 from andrew/2012Vijay Dev2011-12-312-2/+2
|\ | | | | Updated copyright notices for 2012
| * Updated copyright notices for 2012Andrew Nesbitt2011-12-312-2/+2
| |
* | MiniTest condition removedVishnu Atrai2011-12-311-9/+3
| |
* | Merge pull request #4235 from castlerock/remove_ruby_18_BasicObjectJosé Valim2011-12-301-1/+0
|\ \ | | | | | | ruby 1.8 ActiveSupport BasicObject no longer available
| * | ruby 1.8 ActiveSupport BasicObject no longer availableVishnu Atrai2011-12-301-1/+0
| | |
* | | remove condition since to_time always available in ruby19 DateTimeVishnu Atrai2011-12-311-1/+1
|/ /
* | Merge pull request #4233 from bogdan/remove_define_runnerJosé Valim2011-12-301-16/+3
|\ \ | | | | | | AS::Callbacks: remove __define_runner
| * | AS::Callbacks: remove __define_runnerBogdan Gusiev2011-12-301-16/+3
| | |
* | | adds a comments that clarifies why Range#include? chooses the comparison ↵Xavier Noria2011-12-301-0/+1
| | | | | | | | | | | | operator
* | | Merge pull request #4229 from lest/range-includeXavier Noria2011-12-302-1/+6
|\ \ \ | |/ / |/| | refactor Range#include? to handle ranges with floats