json 1.8.0 → 1.8.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of json might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3f7699d7a235e5ee1831e5dd162893ca440a2dff
4
- data.tar.gz: 8a7dfdd7b9a809f87b99b1f82be2cfb239445ed9
3
+ metadata.gz: 9016ff2aa2d28e082036d6bda0c41d67aa19fb6b
4
+ data.tar.gz: 81c089fba888ace41a14e87f371fab7af97efd03
5
5
  SHA512:
6
- metadata.gz: d8816837c8c09bb4a7337d8f9459cdb0f9d0b4e28698c7ccab16d4dfed21c96cdcc848f5a79390f4527a9393311f656bf1a02cc5ea5bd0362aa294fe5c35550c
7
- data.tar.gz: 80394af8c38f184434a4c534ba5907e61d6fdf37960750a39f1cacc0b9120ee096d09c99f5ff1dbc6f64858f6af6b5ebbc6856ee5739f1c1e44ae012cc144663
6
+ metadata.gz: c1af77673b72b02011bd9cf2b655ffbe73cdb6e27c8abf96defa7da1b3297a3c1c6e167c7317859bc58f2905cca8f2b126bbd23b2167f59966116d636c9e81c4
7
+ data.tar.gz: a3737f56ecc087a5fe00f0c775bec1128a68b07971f9207d72f0cfb11ee42f7f85e07d7c824de5fe96a0106ad87e31268dae143402da1b01ed2fe5757ddfdd01
data/.gitignore CHANGED
@@ -10,3 +10,4 @@ Gemfile.lock
10
10
  *.rbc
11
11
  .rbx
12
12
  .AppleDouble
13
+ .DS_Store
data/CHANGES CHANGED
@@ -1,3 +1,5 @@
1
+ 2013-05-13 (1.8.1)
2
+ * Remove Rubinius exception since transcoding should be working now.
1
3
  2013-05-13 (1.8.0)
2
4
  * Fix https://github.com/flori/json/issues/162 reported by Marc-Andre
3
5
  Lafortune <github_rocks@marc-andre.ca>. Thanks!
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.8.1
@@ -1,12 +1,13 @@
1
1
  # -*- encoding: utf-8 -*-
2
+ # stub: json 1.8.1 ruby lib
2
3
 
3
4
  Gem::Specification.new do |s|
4
5
  s.name = "json"
5
- s.version = "1.8.0"
6
+ s.version = "1.8.1"
6
7
 
7
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
9
  s.authors = ["Florian Frank"]
9
- s.date = "2013-05-13"
10
+ s.date = "2013-10-17"
10
11
  s.description = "This is a JSON implementation as a Ruby extension in C."
11
12
  s.email = "flori@ping.de"
12
13
  s.extensions = ["ext/json/ext/generator/extconf.rb", "ext/json/ext/parser/extconf.rb"]
@@ -16,7 +17,7 @@ Gem::Specification.new do |s|
16
17
  s.licenses = ["Ruby"]
17
18
  s.rdoc_options = ["--title", "JSON implemention for Ruby", "--main", "README.rdoc"]
18
19
  s.require_paths = ["lib"]
19
- s.rubygems_version = "2.0.3"
20
+ s.rubygems_version = "2.1.9"
20
21
  s.summary = "JSON Implementation for Ruby"
21
22
  s.test_files = ["./tests/test_json.rb", "./tests/test_json_addition.rb", "./tests/test_json_encoding.rb", "./tests/test_json_fixtures.rb", "./tests/test_json_generate.rb", "./tests/test_json_generic_object.rb", "./tests/test_json_string_matching.rb", "./tests/test_json_unicode.rb"]
22
23
 
@@ -1,12 +1,13 @@
1
1
  # -*- encoding: utf-8 -*-
2
+ # stub: json_pure 1.8.1 ruby lib
2
3
 
3
4
  Gem::Specification.new do |s|
4
5
  s.name = "json_pure"
5
- s.version = "1.8.0"
6
+ s.version = "1.8.1"
6
7
 
7
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
9
  s.authors = ["Florian Frank"]
9
- s.date = "2013-05-13"
10
+ s.date = "2013-10-17"
10
11
  s.description = "This is a JSON implementation in pure Ruby."
11
12
  s.email = "flori@ping.de"
12
13
  s.extra_rdoc_files = ["README.rdoc"]
@@ -15,7 +16,7 @@ Gem::Specification.new do |s|
15
16
  s.licenses = ["Ruby"]
16
17
  s.rdoc_options = ["--title", "JSON implemention for ruby", "--main", "README.rdoc"]
17
18
  s.require_paths = ["lib"]
18
- s.rubygems_version = "2.0.3"
19
+ s.rubygems_version = "2.1.9"
19
20
  s.summary = "JSON Implementation for Ruby"
20
21
  s.test_files = ["./tests/test_json.rb", "./tests/test_json_addition.rb", "./tests/test_json_encoding.rb", "./tests/test_json_fixtures.rb", "./tests/test_json_generate.rb", "./tests/test_json_generic_object.rb", "./tests/test_json_string_matching.rb", "./tests/test_json_unicode.rb"]
21
22
 
@@ -412,10 +412,7 @@ module JSON
412
412
  end
413
413
 
414
414
  # Shortuct for iconv.
415
- if ::String.method_defined?(:encode) &&
416
- # XXX Rubinius doesn't support ruby 1.9 encoding yet
417
- defined?(RUBY_ENGINE) && RUBY_ENGINE != 'rbx'
418
- then
415
+ if ::String.method_defined?(:encode)
419
416
  # Encodes string using Ruby's _String.encode_
420
417
  def self.iconv(to, from, string)
421
418
  string.encode(to, from)
@@ -1,6 +1,6 @@
1
1
  module JSON
2
2
  # JSON version
3
- VERSION = '1.8.0'
3
+ VERSION = '1.8.1'
4
4
  VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0
4
+ version: 1.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-05-13 00:00:00.000000000 Z
11
+ date: 2013-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: permutation
@@ -186,7 +186,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
186
186
  version: '0'
187
187
  requirements: []
188
188
  rubyforge_project:
189
- rubygems_version: 2.0.3
189
+ rubygems_version: 2.1.9
190
190
  signing_key:
191
191
  specification_version: 4
192
192
  summary: JSON Implementation for Ruby