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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 36f99fdd13a51f09639553a90172e654a0babf97ddfa9e82c7b2aeccf9a95baa
4
- data.tar.gz: 50072dc1b9d8285e55c8c0e61f89172aa0e6f8c25e9be56be95a4b7f2873623a
3
+ metadata.gz: b5052056980759a903e08603ccb23a44e078a51dc7f843c3f6f25e78cd019275
4
+ data.tar.gz: b499e5ef95e47f789d672094fb93505440884590870118a6be3b3b2d17b08d56
5
5
  SHA512:
6
- metadata.gz: 29f23a65bd30d712bb406188275fc359baa0419f3c2b6b699981629f9c53cb46d1384d32885738172d2c6e7e7f64640205cd2237cb9478d37157a5ea9fbb2497
7
- data.tar.gz: a8228986d2b1274032ba298dcfd3132fa4b143797d6757333d8d2016729c543d646ce11f09bf64051da31b27000362890faf8070d2399970a754eb21c84dd345
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
 
@@ -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']
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GoogleRobotstxtParser
4
- VERSION = '0.0.5'
4
+ VERSION = '0.0.6'
5
5
  GOOGLE_ROBOTSTXT_MAJOR_VERSION = 1
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google_robotstxt_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bastien Montois