elasticrawl 1.1.2 → 1.1.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/CHANGELOG.md +14 -0
- data/README.md +6 -6
- data/Vagrantfile +4 -0
- data/lib/elasticrawl/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1b89b4d0a38bb042d8d11d8f995ae1f33a624e00
|
|
4
|
+
data.tar.gz: 00b15707dbbc3c828fe505c94ef6537fdf11e5b1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a032013bb65c06eedc850d4a0e8b986bd76a92d2fec9c08712e718733749dce8c0a17c12db8b66b67491b1b1726cd452cb9e19244f6332e92e5ab878a169fc8f
|
|
7
|
+
data.tar.gz: 3c45a331fd2b81335b051c6d0d371626ea3c8f440ddac934ae95bf7d99b7aed1ffc69483a46763d905f48d7829a1beeba13b0559281927324bab129907c33def
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
=== v1.1.3 / 2015-02-04
|
|
2
|
+
* Upgrade Traveling Ruby to 20150204-2.1.5
|
|
3
|
+
|
|
4
|
+
=== v1.1.2 / 2015-01-27
|
|
5
|
+
* Improve error handling for S3 API calls
|
|
6
|
+
|
|
7
|
+
=== v1.1.1 / 2015-01-27
|
|
8
|
+
* Use Traveling Ruby to build deploy packages
|
|
9
|
+
|
|
10
|
+
=== v1.1.0 / 2015-01-03
|
|
11
|
+
* Show file counts for each segment
|
|
12
|
+
|
|
13
|
+
=== v1.0.0 / 2014-02-04
|
|
14
|
+
* Initial release
|
data/README.md
CHANGED
|
@@ -24,15 +24,15 @@ This [blog post](https://rossfairbanks.com/2015/01/03/parsing-common-crawl-using
|
|
|
24
24
|
Deployment packages are available for Linux and OS X, unfortunately Windows isn't supported yet. Download the package, extract it and run the elasticrawl command from the package directory.
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
# OS X https://d2ujrnticqzebc.cloudfront.net/elasticrawl-1.1.
|
|
28
|
-
# Linux (64-bit) https://d2ujrnticqzebc.cloudfront.net/elasticrawl-1.1.
|
|
29
|
-
# Linux (32-bit) https://d2ujrnticqzebc.cloudfront.net/elasticrawl-1.1.
|
|
27
|
+
# OS X https://d2ujrnticqzebc.cloudfront.net/elasticrawl-1.1.3-osx.tar.gz
|
|
28
|
+
# Linux (64-bit) https://d2ujrnticqzebc.cloudfront.net/elasticrawl-1.1.3-linux-x86_64.tar.gz
|
|
29
|
+
# Linux (32-bit) https://d2ujrnticqzebc.cloudfront.net/elasticrawl-1.1.3-linux-x86.tar.gz
|
|
30
30
|
|
|
31
31
|
# e.g.
|
|
32
32
|
|
|
33
|
-
curl -O https://d2ujrnticqzebc.cloudfront.net/elasticrawl-1.1.
|
|
34
|
-
tar -xzf elasticrawl-1.1.
|
|
35
|
-
cd elasticrawl-1.1.
|
|
33
|
+
curl -O https://d2ujrnticqzebc.cloudfront.net/elasticrawl-1.1.3-osx.tar.gz
|
|
34
|
+
tar -xzf elasticrawl-1.1.3-osx.tar.gz
|
|
35
|
+
cd elasticrawl-1.1.3-osx/
|
|
36
36
|
./elasticrawl --help
|
|
37
37
|
```
|
|
38
38
|
|
data/Vagrantfile
CHANGED
|
@@ -21,6 +21,9 @@ Vagrant.configure("2") do |config|
|
|
|
21
21
|
# Network config
|
|
22
22
|
elasticrawl.vm.network :public_network
|
|
23
23
|
|
|
24
|
+
# Synced folder for creating deploy packages
|
|
25
|
+
elasticrawl.vm.synced_folder "../traveling-elasticrawl/", "/traveling-elasticrawl/"
|
|
26
|
+
|
|
24
27
|
# Provision using Chef Solo
|
|
25
28
|
elasticrawl.vm.provision "chef_solo" do |chef|
|
|
26
29
|
chef.cookbooks_path = "cookbooks"
|
|
@@ -53,6 +56,7 @@ Vagrant.configure("2") do |config|
|
|
|
53
56
|
]
|
|
54
57
|
}
|
|
55
58
|
}
|
|
59
|
+
|
|
56
60
|
end
|
|
57
61
|
end
|
|
58
62
|
end
|
data/lib/elasticrawl/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elasticrawl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ross Fairbanks
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-02-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|
|
@@ -189,6 +189,7 @@ extra_rdoc_files: []
|
|
|
189
189
|
files:
|
|
190
190
|
- ".gitignore"
|
|
191
191
|
- ".travis.yml"
|
|
192
|
+
- CHANGELOG.md
|
|
192
193
|
- Cheffile
|
|
193
194
|
- Cheffile.lock
|
|
194
195
|
- Gemfile
|