json 1.8.0-java → 1.8.1-java

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.

@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 051bb7dee977c246c7207fc1ff0e53ab7d24bf9b
4
+ data.tar.gz: 888d7fc06132dca085189a158c53fe0c5d8ecfd6
5
+ SHA512:
6
+ metadata.gz: ad56c1380688ad7a15ffba65e804477bf44151eb35bc45a2a408741e8a1e1e9bbeb829b294837adaa9481a0fd600e69f90c789d9200f2e72154f3bd88f7f08cf
7
+ data.tar.gz: c113d7eb559056851fa7cd3dfe4ee642d619117199491366ce6099093f40f3802b9d8d4120f7f5c618233d0124e7945884359246be7c2c72164f06efcb105535
@@ -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)
Binary file
Binary file
@@ -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,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json
3
3
  version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 1.8.0
4
+ version: 1.8.1
6
5
  platform: java
7
6
  authors:
8
7
  - Daniel Luz
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-05-13 00:00:00.000000000 Z
11
+ date: 2013-10-17 00:00:00.000000000 Z
13
12
  dependencies: []
14
13
  description: A JSON implementation as a JRuby extension.
15
14
  email: dev+ruby@mernen.com
@@ -83,34 +82,25 @@ files:
83
82
  homepage: http://json-jruby.rubyforge.org/
84
83
  licenses:
85
84
  - Ruby
85
+ metadata: {}
86
86
  post_install_message:
87
87
  rdoc_options: []
88
88
  require_paths:
89
89
  - lib
90
90
  required_ruby_version: !ruby/object:Gem::Requirement
91
91
  requirements:
92
- - - ">="
92
+ - - '>='
93
93
  - !ruby/object:Gem::Version
94
- segments:
95
- - 0
96
- hash: 2
97
- version: !binary |-
98
- MA==
99
- none: false
94
+ version: '0'
100
95
  required_rubygems_version: !ruby/object:Gem::Requirement
101
96
  requirements:
102
- - - ">="
97
+ - - '>='
103
98
  - !ruby/object:Gem::Version
104
- segments:
105
- - 0
106
- hash: 2
107
- version: !binary |-
108
- MA==
109
- none: false
99
+ version: '0'
110
100
  requirements: []
111
101
  rubyforge_project: json-jruby
112
- rubygems_version: 1.8.24
102
+ rubygems_version: 2.1.9
113
103
  signing_key:
114
- specification_version: 3
104
+ specification_version: 4
115
105
  summary: JSON implementation for JRuby
116
106
  test_files: []