Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Missing require AS/core_ext/date/conversions | Akira Matsuda | 2019-08-02 | 1 | -0/+1 |
| | |||||
* | Suppress `warning: BigDecimal.new is deprecated` | Yasuo Honda | 2017-12-15 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | `BigDecimal.new` has been deprecated in BigDecimal 1.3.3 which will be a default for Ruby 2.5. Refer https://github.com/ruby/bigdecimal/commit/533737338db915b00dc7168c3602e4b462b23503 * This commit has been made as follows: ``` cd rails git grep -l BigDecimal.new | grep -v guides/source/5_0_release_notes.md | grep -v activesupport/test/xml_mini_test.rb | xargs sed -i -e "s/BigDecimal.new/BigDecimal/g" ``` - `activesupport/test/xml_mini_test.rb` Editmanually to remove `.new` and `::` - guides/source/5_0_release_notes.md This is a Rails 5.0 release notes. | ||||
* | [Active Support] `rubocop -a --only Layout/EmptyLineAfterMagicComment` | Koichi ITO | 2017-07-11 | 1 | -0/+1 |
| | |||||
* | Use frozen-string-literal in ActiveSupport | Kir Shatrov | 2017-07-09 | 1 | -0/+1 |
| | |||||
* | Revert "Merge pull request #29540 from kirs/rubocop-frozen-string" | Matthew Draper | 2017-07-02 | 1 | -1/+0 |
| | | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa. | ||||
* | Enforce frozen string in Rubocop | Kir Shatrov | 2017-07-01 | 1 | -0/+1 |
| | |||||
* | Add more rubocop rules about whitespaces | Rafael Mendonça França | 2016-10-29 | 1 | -28/+28 |
| | |||||
* | Add three new rubocop rules | Rafael Mendonça França | 2016-08-16 | 1 | -6/+6 |
| | | | | | | | | Style/SpaceBeforeBlockBraces Style/SpaceInsideBlockBraces Style/SpaceInsideHashLiteralBraces Fix all violations in the repository. | ||||
* | remove redundant curlies from hash arguments | Xavier Noria | 2016-08-06 | 1 | -1/+1 |
| | |||||
* | modernizes hash syntax in activesupport | Xavier Noria | 2016-08-06 | 1 | -6/+6 |
| | |||||
* | applies new string literal convention in activesupport/test | Xavier Noria | 2016-08-06 | 1 | -22/+22 |
| | | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default. | ||||
* | Require yaml for XML mini isolation test. | Kasper Timm Hansen | 2015-07-11 | 1 | -0/+1 |
| | |||||
* | as/core_ext require's not used | Ankit Gupta | 2015-05-08 | 1 | -1/+0 |
| | |||||
* | Fixes wording of test description | Adam Doeler | 2015-02-11 | 1 | -1/+1 |
| | |||||
* | Merge pull request #11656 from emre-basala/xml_mini_test | Rafael Mendonça França | 2014-04-10 | 1 | -1/+58 |
|\ | | | | | Add tests to ActiveSupport:XmlMini to_tag method | ||||
| * | Add tests to ActiveSupport:XmlMini to_tag method | emre-basala | 2013-08-07 | 1 | -1/+58 |
| | | |||||
* | | Merge pull request #12769 from birkirb/master | Rafael Mendonça França | 2014-02-01 | 1 | -0/+124 |
|\ \ | | | | | | | | | | | | | | | | | | | Boolean parser blows up on a Fixnum. Conflicts: activesupport/CHANGELOG.md | ||||
| * | | Fix breakage in XmlMini | Birkir A. Barkarson | 2013-12-23 | 1 | -0/+125 |
|/ / | | | | | | | | | | | | | - Boolean parsing breaks on non strings (i.e. integer 1|0) - Symbol parsing breaks on non strings. - BigDecimal parsing breaks due to missing require. - Update changelog. | ||||
* | | Fix order dependent test | Arun Agrawal | 2013-09-09 | 1 | -2/+10 |
| | | | | | | | | see c48cbb02d7e6f585e31b404c0c363f0d6b586811 | ||||
* | | Revert "Merge branch 'master' of github.com:rails/docrails" | Vijay Dev | 2013-08-17 | 1 | -10/+2 |
|/ | | | | | | | This reverts commit 70d6e16fbad75b89dd1798ed697e7732b8606fa3, reversing changes made to ea4db3bc078fb3093ecdddffdf4f2f4ff3e1e8f9. Seems to be a code merge done by mistake. | ||||
* | Fix order dependent tests | Akira Matsuda | 2013-07-26 | 1 | -2/+10 |
| | | | | Restore default ActiveSupport::XmlMini.backend after tests | ||||
* | Make XmlMini.with_backend usable with threads | Nikita Afanasenko | 2012-11-15 | 1 | -0/+62 |
| | | | | | | | | | | | | | `XmlMini.with_backend` now may be safely used with threads: Thread.new do XmlMini.with_backend("REXML") { rexml_power } end Thread.new do XmlMini.with_backend("LibXML") { libxml_power } end Each thread will use it's own backend. | ||||
* | use AS::TestCase as the base class | Aaron Patterson | 2012-01-05 | 1 | -1/+1 |
| | |||||
* | fixing tests on ruby trunk | Aaron Patterson | 2011-07-26 | 1 | -1/+1 |
| | |||||
* | fixing whitespace errors | Aaron Patterson | 2011-07-26 | 1 | -9/+9 |
| | |||||
* | Lighthouse ticket # 6334; added tests to verify that spaces in key are ↵ | prakashmurthy | 2011-05-08 | 1 | -0/+10 |
| | | | | dasherized. | ||||
* | Rename duplicate tests. There is now one failing test that was failing ↵ | Mike Gehard | 2011-05-07 | 1 | -1/+1 |
| | | | | before the rename but was never getting run. | ||||
* | xml_mini_test.rb now runs. | José Valim | 2011-05-07 | 1 | -0/+92 |