multi_json 1.9.0 → 1.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9310cbdab77060e6ad1605d2f6db0ea00f1b5204
4
- data.tar.gz: 7bc409de5e81b71bce457fe2f33b962ea2d3ab96
3
+ metadata.gz: 59fcd1d20fa15ce784699c238fecd2f6f1b39ab5
4
+ data.tar.gz: 1bded2a04e78ff3e4caf855cd332f7f78882fe2e
5
5
  SHA512:
6
- metadata.gz: 5243b47e82a2f5f5bcc0d45a7b76ea8fdc63585b092d4acc05bfcc10fc35ebd4823a552a730e7ed112a702dc4a0e1b4de757fb23c397258ed1919fa6d1de4418
7
- data.tar.gz: f4d223b885d5efa05873ffb3be1f862b130e591c838269b4651243e0661d0c40c6b59b41b682d33fea00fc50dc1e9aacf6bc80326992401432e5d97d02c80a1d
6
+ metadata.gz: fdb28e74a8d6942389c93e0895b194bfc7c3e27d2a013f6bb7421233c24a3a5d5d540e636265ae6e91ad5458c107d0e362a1fa54171866d3952843a999ed180b
7
+ data.tar.gz: b53e6f2466ad56a036052a58affbe1f56436422bacfb0c96ff6341ee0bca3718cd58fa250adb920213b23e207faec5dd56131b5f7e8a7001857bc23f683c7202
checksums.yaml.gz.sig CHANGED
Binary file
data.tar.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ 1.9.1
2
+ -----
3
+ * [Remove unused LoadError file](https://github.com/intridea/multi_json/commit/65dedd84d59baeefc25c477fedf0bbe85e7ce2cd)
4
+
1
5
  1.9.0
2
6
  ----
3
7
  * [Rename LoadError to ParseError](https://github.com/intridea/multi_json/commit/4abb98fe3a90b2a7b3d1594515c8a06042b4a27d)
@@ -2,7 +2,7 @@ module MultiJson
2
2
  class Version
3
3
  MAJOR = 1 unless defined? MultiJson::Version::MAJOR
4
4
  MINOR = 9 unless defined? MultiJson::Version::MINOR
5
- PATCH = 0 unless defined? MultiJson::Version::PATCH
5
+ PATCH = 1 unless defined? MultiJson::Version::PATCH
6
6
  PRE = nil unless defined? MultiJson::Version::PRE
7
7
 
8
8
  class << self
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: multi_json
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Bleigh
@@ -33,7 +33,7 @@ cert_chain:
33
33
  7BTxdlSpJZDcAK29Ni3NRCRu6Air4wfDln0Ilzeuut6cJ4/j2/RlvsccVSRaEfOa
34
34
  wM7GTK5SEdU3qelyBdc4+RRs6uU=
35
35
  -----END CERTIFICATE-----
36
- date: 2014-03-05 00:00:00.000000000 Z
36
+ date: 2014-03-19 00:00:00.000000000 Z
37
37
  dependencies:
38
38
  - !ruby/object:Gem::Dependency
39
39
  name: bundler
@@ -83,7 +83,6 @@ files:
83
83
  - lib/multi_json/adapters/ok_json.rb
84
84
  - lib/multi_json/adapters/yajl.rb
85
85
  - lib/multi_json/convertible_hash_keys.rb
86
- - lib/multi_json/load_error.rb
87
86
  - lib/multi_json/options.rb
88
87
  - lib/multi_json/parse_error.rb
89
88
  - lib/multi_json/vendor/okjson.rb
metadata.gz.sig CHANGED
@@ -1 +1,2 @@
1
- Gh#�����rݦ�2.� ��#@}V�l:~� Lu�2*?��&���żG��9�g�L�zmq����pTn� =�F2ا|��0S��,��ȁY������z"Q0�8��|�C��'�NXPL�ՠ�v����#�]I��T��(��� ;��͌�sa�������~�d�b��קp�3����)3��]�|�j���Ű� =ۥ��)/]u���2:�G
1
+ id-
2
+ IVq^c}@�d����2ֿ��bx���������W��eMrK�c�.��@�C�b�Xi��yDv�K8&��P�Q?|�W)��ԣdn��]�sw��`;���[�>��(�� E���
@@ -1,11 +0,0 @@
1
- module MultiJson
2
- class LoadError < StandardError
3
- attr_reader :data
4
- def initialize(message='', backtrace=[], data='')
5
- super(message)
6
- self.set_backtrace(backtrace)
7
- @data = data
8
- end
9
- end
10
- DecodeError = LoadError # Legacy support
11
- end