fulmar 1.7.1 → 1.7.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/fulmar/infrastructure/service/transfer/rsync.rb +1 -1
- data/lib/fulmar/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 18f28aa99b99b7f33abe640866ea2f91d0149070
|
4
|
+
data.tar.gz: c520be42ded95eeae02cbf91d7eaed62fe058920
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 329ae11efdbfa802270006372b3c3a7fdf91a24476bf209b03f4ad9fafbc6dacee7c3861f87feb018a66635c34573278f58ef9e3ef0816dd764afa33dcab852c
|
7
|
+
data.tar.gz: 73cc83da8fa5398d22d30c0e214a6208d233fc7fae1d34d206cb7b79a8cc6510fefaeb6fe2135afd7ec968bb97a93fcd2f4ba0ce1838abf2277acaf9e05005d6
|
data/README.md
CHANGED
@@ -19,9 +19,9 @@ Fulmar currently requires the [mysql2](https://github.com/brianmario/mysql2) gem
|
|
19
19
|
requires the mysql header files. So on a linux system, you want to install
|
20
20
|
libmariadbclient-dev/libmysqlclient-dev or similar.
|
21
21
|
|
22
|
-
You also need cmake to build the dependencies.
|
22
|
+
You also need cmake and pkg-config to build the dependencies.
|
23
23
|
|
24
|
-
- OSX: brew install mariadb cmake
|
24
|
+
- OSX: brew install mariadb cmake pkg-config
|
25
25
|
- Ubuntu: apt-get install libmariadbclient-dev build-essential cmake
|
26
26
|
|
27
27
|
## Installation
|
@@ -55,7 +55,7 @@ module Fulmar
|
|
55
55
|
options = ['-rl']
|
56
56
|
options << "--exclude='#{@config[:rsync][:exclude]}'" if @config[:rsync][:exclude]
|
57
57
|
options << "--exclude-from='#{@config[:rsync][:exclude_file]}'" if @config[:rsync][:exclude_file]
|
58
|
-
options << "--chown='#{@config[:rsync][:chown]}'" if @config[:rsync][:chown]
|
58
|
+
options << "--owner --group --chown='#{@config[:rsync][:chown]}'" if @config[:rsync][:chown]
|
59
59
|
options << "--chmod='#{@config[:rsync][:chmod]}'" if @config[:rsync][:chmod]
|
60
60
|
options << '--delete' if @config[:rsync][:delete]
|
61
61
|
options
|
data/lib/fulmar/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fulmar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonas Siegl
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-06-
|
12
|
+
date: 2015-06-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|