fastlane-plugin-ftp 0.1.2 → 0.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/README.md +29 -5
- data/lib/fastlane/plugin/ftp/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60aa163b9a918ea4347d74b7c0aa665fc90cf886
|
4
|
+
data.tar.gz: e17c2b0b549d1db17d455c5ea63dc5d55bf11131
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd46cfa93b590e6f9ad0a5ba08146606f36573f0cbc5788f2e6ceb3178635d795775a661a2777210427155a4df1ee8a10af29ce2b2d9b409428f7a7c0231dde5
|
7
|
+
data.tar.gz: 92dd1e3d3e4e8186e394e583843c7892fb14e6a83e7292f40b4d51e2ab7de5f34f617f1e42a69d5aff9fadac18d2751ce1c3a1ee8a3971678b2d4be0b085bbb8
|
data/README.md
CHANGED
@@ -12,15 +12,39 @@ fastlane add_plugin ftp
|
|
12
12
|
|
13
13
|
## About ftp
|
14
14
|
|
15
|
-
|
15
|
+
Simple FTP plugins for Fastlane
|
16
16
|
|
17
|
-
|
17
|
+
Support Download and Upload
|
18
18
|
|
19
19
|
## Example
|
20
20
|
|
21
|
-
|
21
|
+
### Upload :
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
ftp(
|
25
|
+
host: 'ftp.domain.com',
|
26
|
+
username: 'my_name',
|
27
|
+
password: 'my_password',
|
28
|
+
upload: {
|
29
|
+
src: "./localFile",
|
30
|
+
dest:"/server/path/"
|
31
|
+
}
|
32
|
+
)
|
33
|
+
```
|
22
34
|
|
23
|
-
|
35
|
+
### Download
|
36
|
+
|
37
|
+
```ruby
|
38
|
+
ftp(
|
39
|
+
host: 'ftp.domain.com',
|
40
|
+
username: 'my_name',
|
41
|
+
password: 'my_password',
|
42
|
+
download: {
|
43
|
+
src: "/distant/server/path/file.md",
|
44
|
+
dest:"/localPath/file.md"
|
45
|
+
}
|
46
|
+
)
|
47
|
+
```
|
24
48
|
|
25
49
|
## Run tests for this plugin
|
26
50
|
|
@@ -30,7 +54,7 @@ To run both the tests, and code style validation, run
|
|
30
54
|
rake
|
31
55
|
```
|
32
56
|
|
33
|
-
To automatically fix many of the styling issues, use
|
57
|
+
To automatically fix many of the styling issues, use
|
34
58
|
```
|
35
59
|
rubocop -a
|
36
60
|
```
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-ftp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Allan Vialatte
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-07-
|
11
|
+
date: 2016-07-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|
@@ -106,7 +106,7 @@ files:
|
|
106
106
|
- lib/fastlane/plugin/ftp/actions/ftp_action.rb
|
107
107
|
- lib/fastlane/plugin/ftp/helper/ftp_helper.rb
|
108
108
|
- lib/fastlane/plugin/ftp/version.rb
|
109
|
-
homepage:
|
109
|
+
homepage: https://github.com/PoissonBallon/fastlane-ftp-plugin
|
110
110
|
licenses:
|
111
111
|
- MIT
|
112
112
|
metadata: {}
|
@@ -126,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
126
126
|
version: '0'
|
127
127
|
requirements: []
|
128
128
|
rubyforge_project:
|
129
|
-
rubygems_version: 2.
|
129
|
+
rubygems_version: 2.5.1
|
130
130
|
signing_key:
|
131
131
|
specification_version: 4
|
132
132
|
summary: Simple ftp upload and download for Fastlane
|