Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Active Support] `rubocop -a --only Layout/EmptyLineAfterMagicComment` | Koichi ITO | 2017-07-11 | 9 | -0/+9 |
| | |||||
* | Use frozen-string-literal in ActiveSupport | Kir Shatrov | 2017-07-09 | 9 | -0/+9 |
| | |||||
* | Merge branch 'master' into require_relative_2017 | Xavier Noria | 2017-07-02 | 1 | -1/+1 |
|\ | |||||
| * | Revert "Merge pull request #29540 from kirs/rubocop-frozen-string" | Matthew Draper | 2017-07-02 | 9 | -9/+0 |
| | | | | | | | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa. | ||||
| * | Merge pull request #29540 from kirs/rubocop-frozen-string | Matthew Draper | 2017-07-02 | 9 | -0/+9 |
| |\ | | | | | | | | | | Enforce frozen string in Rubocop | ||||
| | * | Enforce frozen string in Rubocop | Kir Shatrov | 2017-07-01 | 9 | -0/+9 |
| | | | |||||
| * | | Make ActiveSupport frozen string literal friendly. | Pat Allan | 2017-06-20 | 1 | -1/+1 |
| |/ | | | | | | | | | | | | | The ActiveSupport test suite only passes currently if it uses the latest unreleased commits for dalli, and a patch for Builder: https://github.com/tenderlove/builder/pull/6 Beyond that, all external dependencies (at least, to the extent they’re used by ActiveSupport) are happy, including Nokogiri as of 1.8.0. | ||||
* / | [Active Support] require => require_relative | Akira Matsuda | 2017-07-01 | 2 | -6/+6 |
|/ | |||||
* | Don't create extra assignment, just return | Vipul A M | 2017-06-04 | 1 | -3/+3 |
| | |||||
* | number_to_human_converter: round before calculating exponent | Michael Hoy | 2017-03-16 | 1 | -4/+2 |
| | | | | fixes #25664 | ||||
* | number_to_rounded_converter: extract rounding logic | Michael Hoy | 2017-03-16 | 2 | -26/+70 |
| | |||||
* | No need to nodoc private methods | Akira Matsuda | 2016-12-24 | 1 | -5/+5 |
| | |||||
* | Remove deprecated :prefix option | Andrew White | 2016-11-13 | 1 | -5/+1 |
| | |||||
* | Add more rubocop rules about whitespaces | Rafael Mendonça França | 2016-10-29 | 4 | -4/+4 |
| | |||||
* | applies remaining conventions across the project | Xavier Noria | 2016-08-06 | 2 | -2/+0 |
| | |||||
* | normalizes indentation and whitespace across the project | Xavier Noria | 2016-08-06 | 2 | -2/+0 |
| | |||||
* | modernizes hash syntax in activesupport | Xavier Noria | 2016-08-06 | 2 | -4/+4 |
| | |||||
* | applies new string literal convention in activesupport/lib | Xavier Noria | 2016-08-06 | 7 | -23/+23 |
| | | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default. | ||||
* | Freezing couple of more string '0' & '.' and using the string appending to ↵ | Ankit Gupta | 2016-04-11 | 1 | -2/+4 |
| | | | | do the same string manipulation. This was we avoid the duplicate strings with freeze and append modifies existing string | ||||
* | Freezing the dots as they are causing extra string initialization on every ↵ | Ankit Gupta | 2016-04-10 | 2 | -2/+2 |
| | | | | iteration of calling the helper. Eases on some memory bloat | ||||
* | `number_to_phone` formats number with regexp | Pan GaoYong | 2016-04-02 | 1 | -2/+11 |
| | | | | | | | | | | | | By default, this method formats US number. This commit extends its functionality to format number for other countries with a custom regular expression. number_to_phone(18812345678, pattern: /(\d{3})(\d{4})(\d{4})/) # => 188-1234-5678 The output phone number is divided into three groups, so the regexp should also match three groups of numbers. | ||||
* | Fix broken number_to_currency tests | Prathamesh Sonpatki | 2016-01-29 | 1 | -0/+2 |
| | |||||
* | Change number_to_currency behavior for checking negativity | Prathamesh Sonpatki | 2016-01-29 | 1 | -5/+1 |
| | | | | | | | | | | | - Instead of using `to_f.phase`, just use `to_f.negative`?. - This change works same for all cases except when number is "-0.0". -0.0.to_f.negative? => false -0.0.to_f.phase? => pi - So -0.0 will be treated as positive from now onwards. - So this change reverts changes from https://github.com/rails/rails/pull/6512. - But it should be acceptable as we could not find any currency which supports negative zeros. | ||||
* | Add support for Petabyte and Exabyte in number to human size | Akshay Vishnoi | 2015-12-22 | 1 | -1/+1 |
| | |||||
* | Merge pull request #20872 from maxjacobson/more-humane-rounding | Sean Griffin | 2015-10-20 | 1 | -2/+4 |
|\ | | | | | | | Round some numbers more humanely | ||||
| * | Round some numbers more humanely | Max Jacobson | 2015-07-26 | 1 | -2/+4 |
| | | | | | | | | Fix #20869 | ||||
* | | - Extracted `DELIMITED_REGEX` to `delimited_regex` method and made use of ↵ | Vipul A M | 2015-08-28 | 1 | -2/+7 |
| | | | | | | | | | | | | | | | | | | | | user passed `options[:delimited_regex]` if available. Changed `DELIMITED_REGEX` to `DEFAULT)DELIMITED_REGEX` to signify what it means. - Added tests for number to delimited and number to currency in both actionview and activesupport. Changes Changes | ||||
* | | Deprecate the :prefix option of `number_to_human_size` | Jean Boussier | 2015-08-10 | 1 | -0/+4 |
|/ | |||||
* | Give respond_to? a Symbol | Akira Matsuda | 2015-05-20 | 1 | -1/+1 |
| | |||||
* | Freeze static arguments for gsub | brainopia | 2015-04-02 | 4 | -4/+4 |
| | |||||
* | Prefer string patterns for gsub | brainopia | 2015-04-02 | 4 | -4/+4 |
| | | | | | | | | | | | | | | | | | https://github.com/ruby/ruby/pull/579 - there is a new optimization since ruby 2.2 Previously regexp patterns were faster (since a string was converted to regexp underneath anyway). But now string patterns are faster and better reflect the purpose. Benchmark.ips do |bm| bm.report('regexp') { 'this is ::a random string'.gsub(/::/, '/') } bm.report('string') { 'this is ::a random string'.gsub('::', '/') } bm.compare! end # string: 753724.4 i/s # regexp: 501443.1 i/s - 1.50x slower | ||||
* | `number_to_percentage` and `precision: 0` work with `NAN` and `INFINITY`. | Yves Senn | 2015-03-06 | 1 | -1/+1 |
| | | | | Closes #19227. | ||||
* | Doc fix [ci skip] | Sushruth Sivaramakrishnan | 2015-03-05 | 1 | -2/+2 |
| | |||||
* | Merge pull request #12067 from jackxxu/keep_precision | Rafael Mendonça França | 2015-02-06 | 1 | -25/+28 |
| | | | | | | | | | Enable number_to_percentage to keep the number's precision by allowing :precision option value to be nil Conflicts: activesupport/CHANGELOG.md activesupport/lib/active_support/number_helper.rb activesupport/test/number_helper_test.rb | ||||
* | Pass symbol as an argument instead of a block | Erik Michaels-Ober | 2014-11-29 | 1 | -1/+1 |
| | |||||
* | Do gsub with a regexp instead of a string | Pablo Herrero | 2014-10-29 | 2 | -2/+2 |
| | |||||
* | Use zero-padding for number_to_rounded_converter | Zachary Scott | 2014-08-22 | 1 | -1/+1 |
| | |||||
* | Fixes the digits counter of AS's NumberToRoundedConverter | Xavier Noria | 2014-08-20 | 1 | -1/+1 |
| | | | | | | | | | | | Zero has one digit, but Math.log10(0) returns -Infinity. The method needs to special-case zero. The patch adds a regression test that is not clearly related to the underlying issue because digit_count is private and has no coverage. Gray area. This bug was uncovered by 60062cf. | ||||
* | Fix AS::NumberHelper results with rationals | Juanjo Bazán | 2014-05-31 | 1 | -5/+1 |
| | | | | | | | | | | :precision was incorrectly being applied to Rationals before: ActiveSupport::NumberHelper.number_to_rounded Rational(10, 3), precision: 2 => "3.3" after: ActiveSupport::NumberHelper.number_to_rounded Rational(10, 3), precision: 2 => "3.33" | ||||
* | Use block parameter rather than `$1` during `gsub!` so ↵ | Mark J. Titorenko | 2014-05-12 | 1 | -1/+3 |
| | | | | | | `ActiveSupport::SafeBuffer` values aren't mangled. Fixes #15064 | ||||
* | fix `number_to_percentage` with `Float::NAN`, `Float::INFINITY`. | Yves Senn | 2014-03-17 | 1 | -2/+1 |
| | | | | | | | Closes #14405. This is a follow-up to 9e997e9039435617b6a844158f5437e97f6bc107 to restore the documented behavior. | ||||
* | Fix AS::NumberHelper results with large precisions | Kenta Murata & Akira Matsuda | 2013-12-20 | 1 | -7/+37 |
| | | | | | | | | | before: ActiveSupport::NumberHelper.number_to_rounded '3.14159', precision: 50 => "3.14158999999999988261834005243144929409027099609375" after: ActiveSupport::NumberHelper.number_to_rounded '3.14159', precision: 50 => "3.14159000000000000000000000000000000000000000000000" | ||||
* | Nodoc missing number helper classes in AS [ci skip] | Carlos Antonio da Silva | 2013-12-11 | 2 | -2/+2 |
| | | | | These classes are not meant to be public. | ||||
* | Remove earlier return in favor of conditional | Carlos Antonio da Silva | 2013-12-03 | 1 | -6/+9 |
| | |||||
* | Change delimiter check order: first check if it is present | Carlos Antonio da Silva | 2013-12-03 | 1 | -3/+3 |
| | | | | | | | This reads a lot better, and we won't need to try start_with? for blank delimiters. Also rename method name to read better. | ||||
* | Make both conversion methods work similarly | Carlos Antonio da Silva | 2013-12-03 | 1 | -1/+2 |
| | | | | | The conversion without area code already changed the passed number in place, so change the other method to do the same. | ||||
* | Remove useless empty string | Carlos Antonio da Silva | 2013-12-03 | 1 | -2/+1 |
| | |||||
* | No need for #tap | Carlos Antonio da Silva | 2013-12-03 | 1 | -4/+3 |
| | |||||
* | Avoid a hash creation since defaults is a new hash already | Carlos Antonio da Silva | 2013-12-03 | 1 | -1/+1 |
| | |||||
* | Stop using local variables everywhere, make use of the reader | Carlos Antonio da Silva | 2013-12-03 | 6 | -20/+20 |
| |