commonmarker 1.0.0.pre8-x86_64-linux → 1.0.0.pre9-x86_64-linux

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: f40ed149245b11547406ca327cb2c1e7c8750b772563b4844815ddba38cb2ac4
4
- data.tar.gz: 587707e21e7596e8d3679cca3c66d898e3b35674aff538cae92d7775a513e009
3
+ metadata.gz: 7c89cf099202a906fdf96df36e81338c90924c3a819203e63d211ecad6f3e9e7
4
+ data.tar.gz: 746f1de02fb9a05c78e187d03772780b16803354d6b4ccf26ba32e9be824de27
5
5
  SHA512:
6
- metadata.gz: 7258acdca3aee0b92e8872a2a0cbd156dc5933db74706ce972824041b87f1b16493fb0968771527ef3904111aaaf0502d890d07e89580a0649b698aae8387968
7
- data.tar.gz: 3d18e4d88effe9906c2dd4817c904702151a7c2f0cb81969ce602fe941cf5e61a3cfe03bf6c97f46670bfb3ebd6f6ac32356f333714963d28c6cf6229035ebcd
6
+ metadata.gz: 26d21b5e2b40ec1bb7498f676363da19285b987d74a04ae4b63fd1189c57cc613b84f3c3a9ce9fe6db09e8d5e99985483d37be58244ca696ca57331ac09388d1
7
+ data.tar.gz: dc61b924679ee29ff2a31a620fe5ffaffb5764e40cfbc0646b4daaf75147868b61e8f091c7291736aa90148c17e754d9058411f5efae5ebde347f5620778e3b5
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Commonmarker
4
- VERSION = "1.0.0.pre8"
4
+ VERSION = "1.0.0.pre9"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: commonmarker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre8
4
+ version: 1.0.0.pre9
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Garen Torikian
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2023-03-09 00:00:00.000000000 Z
12
+ date: 2023-03-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -48,7 +48,6 @@ extra_rdoc_files: []
48
48
  files:
49
49
  - LICENSE.txt
50
50
  - README.md
51
- - ext/commonmarker/_util.rb
52
51
  - lib/commonmarker.rb
53
52
  - lib/commonmarker/3.1/commonmarker.so
54
53
  - lib/commonmarker/3.2/commonmarker.so
@@ -1,102 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- RUBY_MAJOR, RUBY_MINOR = RUBY_VERSION.split(".").collect(&:to_i)
4
-
5
- PACKAGE_ROOT_DIR = File.expand_path(File.join(File.dirname(__FILE__), "..", ".."))
6
- PACKAGE_EXT_DIR = File.join(PACKAGE_ROOT_DIR, "ext", "commonmarker")
7
-
8
- OS = case os = RbConfig::CONFIG["host_os"].downcase
9
- when /linux/
10
- # The official ruby-alpine Docker containers pre-build Ruby. As a result,
11
- # Ruby doesn't know that it's on a musl-based platform. `ldd` is the
12
- # a more reliable way to detect musl.
13
- # See https://github.com/skylightio/skylight-ruby/issues/92
14
- if ENV["SKYLIGHT_MUSL"] || %x(ldd --version 2>&1).include?("musl")
15
- "linux-musl"
16
- else
17
- "linux"
18
- end
19
- when /darwin/
20
- "darwin"
21
- when /freebsd/
22
- "freebsd"
23
- when /netbsd/
24
- "netbsd"
25
- when /openbsd/
26
- "openbsd"
27
- when /sunos|solaris/
28
- "solaris"
29
- when /mingw|mswin/
30
- "windows"
31
- else
32
- os
33
- end
34
-
35
- # Normalize the platform CPU
36
- ARCH = case cpu = RbConfig::CONFIG["host_cpu"].downcase
37
- when /amd64|x86_64|x64/
38
- "x86_64"
39
- when /i?86|x86|i86pc/
40
- "x86"
41
- when /ppc|powerpc/
42
- "powerpc"
43
- when /^aarch/
44
- "aarch"
45
- when /^arm/
46
- "arm"
47
- else
48
- cpu
49
- end
50
-
51
- def windows?
52
- OS == "windows"
53
- end
54
-
55
- def solaris?
56
- OS == solaries
57
- end
58
-
59
- def darwin?
60
- OS == "darwin"
61
- end
62
-
63
- def macos?
64
- darwin? || OS == "macos"
65
- end
66
-
67
- def openbsd?
68
- OS == "openbsd"
69
- end
70
-
71
- def aix?
72
- OS == "aix"
73
- end
74
-
75
- def nix?
76
- !(windows? || solaris? || darwin?)
77
- end
78
-
79
- def x86_64?
80
- ARCH == "x86_64"
81
- end
82
-
83
- def x86?
84
- ARCH == "x86"
85
- end
86
-
87
- def abs_path(path)
88
- File.join(PACKAGE_EXT_DIR, path)
89
- end
90
-
91
- def find_header_or_abort(header, *paths)
92
- find_header(header, *paths) || abort("#{header} was expected in `#{paths.join(", ")}`, but it is missing.")
93
- end
94
-
95
- def find_library_or_abort(lib, func, *paths)
96
- find_library(lib, func, *paths) || abort("#{lib} was expected in `#{paths.join(", ")}`, but it is missing.")
97
- end
98
-
99
- def concat_flags(*args)
100
- args.compact.join(" ")
101
- end
102
-