1. 06 11月, 2013 2 次提交
    • G
      Eliminate `JSON.{parse,load,generate,dump}` and `def to_json` · ff1192fe
      Godfrey Chan 提交于
      JSON.{dump,generate} offered by the JSON gem is not compatiable with
      Rails at the moment and can cause a lot of subtle bugs when passed
      certain data structures. This changed all direct usage of the JSON gem
      in internal Rails code to always go through AS::JSON.{decode,encode}.
      
      We also shouldn't be implementing `to_json` most of the time, and
      these occurances are replaced with an equivilent `as_json`
      implementation to avoid problems down the road.
      
      See [1] for all the juicy details.
      
      [1]: intridea/multi_json#138 (comment)
      ff1192fe
    • G
      Fixed Object#as_json and Struct#as_json with options · 134c1156
      Godfrey Chan 提交于
      These methods now takes the same options as Hash#as_json, for example:
      
          struct = Struct.new(:foo, :bar).new
          struct.foo = "hello"
          struct.bar = "world"
          json = struct.as_json(only: [:foo]) # => {foo: "hello"}
      
      This is extracted from PR #11728 from @sergiocampama, see also the
      discussion in #11460.
      134c1156
  2. 03 11月, 2013 1 次提交
  3. 31 10月, 2013 1 次提交
    • G
      Raise an error when AS::JSON.decode is called with options · 1fb79691
      Godfrey Chan 提交于
      Rails 4.1 has switched away from MultiJson, and does not currently
      support any options on `ActiveSupport::JSON.decode`. Passing in
      unsupported options (i.e. any non-empty options hash) will now raise
      an ArgumentError.
      
      Rationale:
      
      1. We cannot guarantee the underlying JSON parser won't change in the
         future, hence we cannot guarantee a consistent set of options the
         method could take
      
      2. The `json` gem, which happens to be the current JSON parser, takes
         many dangerous options that is irrelevant to the purpose of AS's
         JSON decoding API
      
      3. To reserve the options hash for future use, e.g. overriding default
         global options like ActiveSupport.parse_json_times
      
      This change *DOES NOT* introduce any changes in the public API. The
      signature of the method is still decode(json_text, options). The
      difference is this method previously accepted undocumented options
      which does different things when the underlying adapter changes. It
      now correctly raises an ArgumentError when it encounters options that
      it does not recognize (and currently it does not support any options).
      1fb79691
  4. 25 10月, 2013 1 次提交
  5. 24 10月, 2013 1 次提交
  6. 15 10月, 2013 1 次提交
  7. 12 10月, 2013 1 次提交
  8. 11 10月, 2013 1 次提交
  9. 01 10月, 2013 1 次提交
  10. 20 9月, 2013 1 次提交
  11. 13 9月, 2013 2 次提交
    • G
      Moved all JSON core extensions into core_ext/object/json · 64c88fb5
      Godfrey Chan 提交于
      TL;DR The primary driver is to remove autoload surprise.
      
      This is related to #12106. (The root cause for that ticket is that
      json/add defines Regexp#to_json among others, but here I'll reproduce
      the problem without json/add.)
      
      Before:
      
         >> require 'active_support/core_ext/to_json'
         => true
         >> //.as_json
         NoMethodError: undefined method `as_json' for //:Regexp
           from (irb):3
           from /Users/godfrey/.rvm/rubies/ruby-2.0.0-p195/bin/irb:16:in `<main>'
         >> //.to_json
         => "\"(?-mix:)\""
         >> //.as_json
         => "(?-mix:)"
      
      After:
      
         >> require 'active_support/core_ext/to_json'
         => true
         >> //.as_json
         => "(?-mix:)"
      
      This is because ActiveSupport::JSON is autoloaded the first time
      Object#to_json is called, which causes additional core extentions
      (previously defined in active_support/json/encoding.rb) to be loaded.
      
      When someone require 'active_support/core_ext', the expectation is
      that it would add certain methods to the core classes NOW. The
      previous behaviour causes additional methods to be loaded the first
      time you call `to_json`, which could cause nasty surprises and other
      unplesant side-effects.
      
      This change moves all core extensions in to core_ext/json. AS::JSON is
      still autoloaded on first #to_json call, but since it nolonger
      include the core extensions, it should address the aforementioned bug.
      
      *Requiring core_ext/object/to_json now causes a deprecation warnning*
      64c88fb5
    • G
      Enabled quirks mode on JSON.parse, fixes broken test in af9caae9 · 52fb1a95
      Godfrey Chan 提交于
      It turns out that ActionPack depends on the decoder to parse JSON
      "fragments" (e.g. '"a string"', '1', 'null', etc), so we need to
      enable quirks mode on JSON.parse. Also added coverage on the decoder
      side to prevent regression.
      52fb1a95
  12. 12 9月, 2013 1 次提交
  13. 11 9月, 2013 3 次提交
  14. 10 9月, 2013 2 次提交
  15. 09 9月, 2013 1 次提交
  16. 30 8月, 2013 1 次提交
  17. 27 8月, 2013 1 次提交
    • S
      Ensure all-caps nested consts marked as autoloaded · b4a96686
      Simon Coffey 提交于
      Previously, an autoloaded constant `HTML::SomeClass` would not be marked
      as autoloaded by AS::Dependencies. This is because the
      `#loadable_constants_for_path` method uses `String#camelize` on the
      inferred file path, which in turn means that, unless otherwise directed,
      AS::Dependencies watches for loaded constants in the `Html` namespace.
      
      By passing the original qualified constant name to `#load_or_require`,
      this inference step is avoided, and the new constant is picked up in the
      correct namespace.
      b4a96686
  18. 22 8月, 2013 1 次提交
  19. 21 8月, 2013 3 次提交
  20. 20 8月, 2013 1 次提交
  21. 18 8月, 2013 1 次提交
  22. 14 8月, 2013 1 次提交
  23. 13 8月, 2013 2 次提交
  24. 07 8月, 2013 1 次提交
  25. 04 8月, 2013 1 次提交
    • A
      Fix unused variable warning · dfcef831
      Andrew White 提交于
      We need to call `in_time_zone` to test that it isn't modifying the receiver
      but since the variable isn't used it raises a warning so add an assertion
      to make Ruby think it's being used.
      dfcef831
  26. 03 8月, 2013 1 次提交
    • G
      Avoid calling define_method with non-english chars in InflectorTest · ab5e99ed
      Gaurish Sharma 提交于
      When we call define_method with non-english chars like ¿por qué? it
      errors out on JRuby as of 1.7.4 & would leave out the following error
      
      invalid byte sequence in US-ASCII
      
      To work around this issue, I have switched to define_test method call
      define method with fixed string & the index of the hash. the index was
      added because otherwise, ruby will raise method redefined warning.
      
      As far as I can see there are no side-effect of this change for
      other implementations. For readbility I have added a message to
      asssert_equal informing for which word/phase the test has passed.
      
      Before this Change:
      JRuby:
      Tests terminated suddenly with an error. no reported of Failues
      or errors
      MRI:
      All Green.
      
      After this Change,
      JRuby:
      the `ActiveSupport` TestsSuite gracefully fails with report at the end which test failed & why.
      MRI:
      All Green(no change)
      ab5e99ed
  27. 01 8月, 2013 1 次提交
  28. 30 7月, 2013 1 次提交
  29. 29 7月, 2013 3 次提交
  30. 26 7月, 2013 1 次提交