google_robotstxt_parser 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/ext/robotstxt/extconf.rb +3 -2
- data/lib/google_robotstxt_parser/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b5052056980759a903e08603ccb23a44e078a51dc7f843c3f6f25e78cd019275
|
4
|
+
data.tar.gz: b499e5ef95e47f789d672094fb93505440884590870118a6be3b3b2d17b08d56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31592cec5e604d5cc8edc515ad8bbf796091a3156013eafdaf9544f91f78fc69df3f1e41888c84c2f42befbf2c0ef68352952619edc504e2d21b652b117f835e
|
7
|
+
data.tar.gz: 203ee4e491218bfd7a1406e057c513e7d3e8ddb52b1f3bc121e9722cc8fd4b61e8fa63302cf2354c07a4ff6c4170a2f62c5807aae0f34863501f21d744a7f25b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## Version 0.0.5
|
4
|
+
* Heroku was not looking on the right directory (tmp instead of app)
|
5
|
+
* /tmp/build_xxx/vendor/bundle/ruby/2.5.0/gems/google_robotstxt_parser-0.0.5/ext/robotstxt/robotstxt/c-build
|
6
|
+
* /app/vendor/bundle/ruby/2.5.0/gems/google_robotstxt_parser-0.0.5/ext/robotstxt/robotstxt/c-build
|
7
|
+
|
8
|
+
|
3
9
|
## Version 0.0.5
|
4
10
|
* DBUILD_SHARED_LIBS=OFF to create .so insted of .bundle on Heroku
|
5
11
|
|
data/ext/robotstxt/extconf.rb
CHANGED
@@ -44,8 +44,9 @@ unless MAKE
|
|
44
44
|
abort 'ERROR: GNU make is required to build Google Robotstxt Parser.'
|
45
45
|
end
|
46
46
|
|
47
|
-
CWD = __dir__
|
48
|
-
LIBROBOTSTXT_DIR = File.join(CWD, 'robotstxt')
|
47
|
+
# CWD = __dir__
|
48
|
+
# LIBROBOTSTXT_DIR = File.join(CWD, 'robotstxt')
|
49
|
+
LIBROBOTSTXT_DIR = File.join('.', 'robotstxt')
|
49
50
|
|
50
51
|
LIBDIR = RbConfig::CONFIG['libdir']
|
51
52
|
INCLUDEDIR = RbConfig::CONFIG['includedir']
|