extended_bundler-errors 0.3.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/extended_bundler/errors/version.rb +1 -1
- data/lib/extended_bundler/handlers/nokogiri.yml +31 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb3c88d0192890c819df1532065c4149c8e1ab82eae977d92410906006677c2c
|
|
4
|
+
data.tar.gz: de84ba838ab0cd4f28d92778ff7bfb411f7d3ef7ff60c08ffe87ac3c240599f5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6780c6462cf2760bf081a6ca711db195855049847739356fb72fa4cbc7f04c760086e61dacda06558efd9a6eaf5bf73881ba368e56f29246aaabfdbcafdc047e
|
|
7
|
+
data.tar.gz: 35caab2d919351ee1ff277a9e32bccc30f6c826457e5868d5333a6d8187cc8dec5b38b223460bdaf6800c959d942136b22f42f2bde2df093037ef698147239e5
|
data/Gemfile.lock
CHANGED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
-
|
|
2
|
+
versions: all
|
|
3
|
+
matching:
|
|
4
|
+
- "fatal error:.+?stdio.h"
|
|
5
|
+
messages:
|
|
6
|
+
en: |
|
|
7
|
+
{{bold:What is the problem?}}
|
|
8
|
+
The {{info:/usr/include}} folder is missing.
|
|
9
|
+
This folder includes the {{info:stdio.h}} header needed for compiling
|
|
10
|
+
|
|
11
|
+
{{bold:What can I do?}}
|
|
12
|
+
Linux:
|
|
13
|
+
Start by updating the APT indices:
|
|
14
|
+
{{command:sudo apt-get update}}
|
|
15
|
+
|
|
16
|
+
Then installing these packages may help:
|
|
17
|
+
{{command:sudo apt-get install gcc}}
|
|
18
|
+
{{command:sudo apt-get install build-essential}}
|
|
19
|
+
{{command:sudo apt-get install libc6-dev}}
|
|
20
|
+
|
|
21
|
+
Mac:
|
|
22
|
+
Option 1: Install Command Line Tools.
|
|
23
|
+
This may not always work and the tools may already be installed.
|
|
24
|
+
It is a good first attempt to fix.
|
|
25
|
+
{{command:xcode-select --install}}
|
|
26
|
+
|
|
27
|
+
Option 2: Install SDK headers directly.
|
|
28
|
+
{{command:cd /Library/Developer/CommandLineTools/Packages/}}
|
|
29
|
+
{{command:open macOS_SDK_headers_for_macOS_*.pkg}}
|
|
30
|
+
|
|
31
|
+
Once this is done, you should have a {{info:/usr/include}} folder with header files.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: extended_bundler-errors
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- jules2689
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-05-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -80,6 +80,7 @@ files:
|
|
|
80
80
|
- lib/extended_bundler/handlers/libv8.yml
|
|
81
81
|
- lib/extended_bundler/handlers/mini_racer.yml
|
|
82
82
|
- lib/extended_bundler/handlers/mysql2.yml
|
|
83
|
+
- lib/extended_bundler/handlers/nokogiri.yml
|
|
83
84
|
- lib/extended_bundler/handlers/oj.yml
|
|
84
85
|
- lib/extended_bundler/handlers/openssl.yml
|
|
85
86
|
- lib/extended_bundler/handlers/pg.yml
|