oj-introspect 0.7.1 → 0.7.2

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
  SHA256:
3
- metadata.gz: 74ab6b62802075f9e3c9d9efc7fb13a2eca6d61c6da2f58e1b5f853fe08841c8
4
- data.tar.gz: 13874ca3c2afea6ba3fb9de442f904b1dd8fe24131f7c4430ee496c01b6fd627
3
+ metadata.gz: 3580745638644530947070ce26315b0fbff712b1eb432ab400c21bc7c0c2ea10
4
+ data.tar.gz: a0ed502b5d573ef2dd851684c04f9545a98b0855216e931c92a2be78924d2c73
5
5
  SHA512:
6
- metadata.gz: c7bfa4f6a854ae76136e01f102b63c231b055c06b3fbe5941b98b0c3a00b6d79653fad56afde069fc2907e693164ac1385ef4c3363e817cb48fb12592a99da4d
7
- data.tar.gz: b151a7bbc3f00291110db4c30f5bfb2cbdbcfdc3ac150062ba98f07f58598cd71eaced956bca86a40fb6fce83c529a2599a2b6948d95495b6fe8e665b0b13658
6
+ metadata.gz: 4885e5a949e2e978fb48b7c9f3e7dff4c22eb786baa069c78bb6861c542503b78bbc536d8185566bbad296fc8f51720a89f011c7b34f63dabe27deb8489c78f4
7
+ data.tar.gz: ce3f9f5f42fe8f4592dc88072d0c7ce6d621327e76cfbb88ff2c21ed2d5f367825b21f19b0ead99b4e5e12bbabbbb68cbb2c66962527483cfb2f4dcde2de45ca
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- oj-introspect (0.7.1)
4
+ oj-introspect (0.7.2)
5
5
  oj (>= 3.13.23)
6
6
 
7
7
  GEM
@@ -8,7 +8,7 @@ oj_version_file_path = Pathname.new(oj_version_file)
8
8
  OJ_HEADERS = oj_version_file_path.join('..', '..', '..', 'ext', 'oj').to_s
9
9
 
10
10
  cc_version = `#{RbConfig.expand("$(CC) --version".dup)}`
11
- if cc_version.match?(/clang/i)
11
+ if cc_version.match?(/clang/i) && RUBY_PLATFORM =~ /darwin/
12
12
  # Ignore symbols loaded from Oj in case Ruby is compiled without
13
13
  # "-Wl,-undefined,dynamic_lookup" (related to https://bugs.ruby-lang.org/issues/19005)
14
14
  symfile = File.join(__dir__, 'oj.sym')
@@ -18,7 +18,7 @@ if cc_version.match?(/clang/i)
18
18
  end
19
19
 
20
20
  # Needed for Ruby 3.2 ABI check: https://github.com/ruby/ruby/pull/5474
21
- if RUBY_VERSION >= "3.2"
21
+ if RUBY_VERSION >= "3.2" && RUBY_PATCHLEVEL < 0
22
22
  $LDFLAGS << " -Wl,-exported_symbol,_ruby_abi_version"
23
23
  end
24
24
  end
@@ -1,5 +1,5 @@
1
1
  module Oj
2
2
  class Introspect
3
- VERSION = "0.7.1"
3
+ VERSION = "0.7.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oj-introspect
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mehmet Emin INAC
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-11-10 00:00:00.000000000 Z
11
+ date: 2023-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: oj
@@ -70,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
70
70
  - !ruby/object:Gem::Version
71
71
  version: '0'
72
72
  requirements: []
73
- rubygems_version: 3.1.6
73
+ rubygems_version: 3.3.26
74
74
  signing_key:
75
75
  specification_version: 4
76
76
  summary: Oj introspect parser.