kimurai 1.3.1 → 1.3.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e012bfe7724ceaeeb7e75630bc969200f1738cec954d05372e1221c65a7432af
4
- data.tar.gz: 1fc751d0393019ebe965c584459cb8d254e3bf58e66abf1bb3189a97616bb522
3
+ metadata.gz: 71ac47a69324914eaa098231d72b4af453e9e222d4fc7b19f0b2ef88449c7c18
4
+ data.tar.gz: e5ac63a13897f92118b3bbe33bc55f8f46e4970333ffeedf88c3f64e2df791e8
5
5
  SHA512:
6
- metadata.gz: 59409403d05242f603a46adec4f8d5f1c02f5a8b1b080df00779f9861c71d666a89402e6d8cfe79f14123e61e76a1a387e5a1909e6545be0a68f8acd697b73b5
7
- data.tar.gz: 591c5d6aed181a6d43a6ce2ffb07d22d3c44824f9895efa62f2493aab50dda1564ed37b9e726f43ca8aa971d4ddc3ef15177f8ab16ef0914271e3a0811f305ff
6
+ metadata.gz: 11555b24a707d857c37de7952654cc2d5cdc5d5c188cd15aa364b02126e3abeff71b65a86ddfae276fc8d2136f7b2e0b3b25afe7b798e9af1674bfb0b6796c03
7
+ data.tar.gz: '094fb4c7cac6a326c76758c07e3ca9e09ab36d68e8da3d80465493c93a6fa5a664e332ec55ea3d5b05f1d52dd3327bd732c43149db95b04e59bf2fe85f36ec15'
@@ -1,4 +1,9 @@
1
1
  # CHANGELOG
2
+ ## 1.3.2
3
+ ### Fixes
4
+ * In the project template, set Ruby version as >= 2.5 (before was hard-coded to 2.5.1)
5
+ * Remove .ruby-version file (was hard-coded to 2.5.1) from the project template
6
+
2
7
  ## 1.3.1
3
8
  ### Fixes
4
9
  * Fixed bug in Base#save_to
data/README.md CHANGED
@@ -18,7 +18,7 @@
18
18
 
19
19
  <br>
20
20
 
21
- > Note: this readme is for `1.3.1` gem version. CHANGELOG [here](CHANGELOG.md).
21
+ > Note: this readme is for `1.3.2` gem version. CHANGELOG [here](CHANGELOG.md).
22
22
 
23
23
  Kimurai is a modern web scraping framework written in Ruby which **works out of box with Headless Chromium/Firefox, PhantomJS**, or simple HTTP requests and **allows to scrape and interact with JavaScript rendered websites.**
24
24
 
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
  git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3
3
 
4
- ruby '2.5.1'
4
+ ruby '>= 2.5'
5
5
 
6
6
  # Framework
7
7
  gem 'kimurai', '~> 1.0'
@@ -1,3 +1,3 @@
1
1
  module Kimurai
2
- VERSION = "1.3.1"
2
+ VERSION = "1.3.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kimurai
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Victor Afanasev
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-12-03 00:00:00.000000000 Z
11
+ date: 2018-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -306,7 +306,6 @@ files:
306
306
  - lib/kimurai/pipeline.rb
307
307
  - lib/kimurai/runner.rb
308
308
  - lib/kimurai/template/.gitignore
309
- - lib/kimurai/template/.ruby-version
310
309
  - lib/kimurai/template/Gemfile
311
310
  - lib/kimurai/template/README.md
312
311
  - lib/kimurai/template/config/application.rb
@@ -1 +0,0 @@
1
- 2.5.1