json_pure 1.8.0 → 1.8.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8fcee847ff7c0d00a38c2506b846d6795bfb2536
4
- data.tar.gz: 0dc226f4f7c3f1ccfc0e5b1df624b89f324a1d97
3
+ metadata.gz: 554b04ceae9f2a29bf212f6dd0fa7c4c0bb82fb9
4
+ data.tar.gz: 23d48e4ae89c28309d00b7d6a82aa681b36fab59
5
5
  SHA512:
6
- metadata.gz: 7604bf969607d3c0ea3f96559a2a82d89c20d467a15611d01f94d2cf0e9809ad8bba0454eed065629bbd3754c12b6ed51fc8e50667cf3985910baaa591048d77
7
- data.tar.gz: fcd3f79431eee7e47d749462d309c19778832ce3b61e2c1e0f9c2720455f4eff0946146a44776b9507051536018ac9e2d4841df743c62d13445896f4bc824420
6
+ metadata.gz: ca664cfceddec6eaf5bd7c7fef9df30a5cd89722c84c65728913d8ba53df0b03ea2b21aeb69d5433f55a375a9f23b962f618d53ef12de4564287154c496afaa0
7
+ data.tar.gz: 9f9543babe457b825c9a9215881eb7282c11e7860613dcfebe7ad5756abdb1185fe66ce82492d3366812b871c5c6a143677de888a5d08ce3bb546efa646fa27f
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
data/json.gemspec CHANGED
@@ -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
 
data/json_pure.gemspec CHANGED
@@ -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
 
data/lib/json/common.rb CHANGED
@@ -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)
data/lib/json/version.rb CHANGED
@@ -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_pure
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
@@ -198,7 +198,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
198
198
  version: '0'
199
199
  requirements: []
200
200
  rubyforge_project:
201
- rubygems_version: 2.0.3
201
+ rubygems_version: 2.1.9
202
202
  signing_key:
203
203
  specification_version: 4
204
204
  summary: JSON Implementation for Ruby