fastlane-plugin-ftp 0.1.2 → 0.1.3

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
  SHA1:
3
- metadata.gz: b21b0f43609d99ca67e848ce4301d70241ad15ab
4
- data.tar.gz: 39443f996b3ccac9ed42ed3e9b90804acbd36e55
3
+ metadata.gz: 60aa163b9a918ea4347d74b7c0aa665fc90cf886
4
+ data.tar.gz: e17c2b0b549d1db17d455c5ea63dc5d55bf11131
5
5
  SHA512:
6
- metadata.gz: 2fd06d10d0d2b5b857ee82980dc73959999270ab68516bfeaa6342175c273b9e788c80138e52e35f0e13a9855c26855b29e872df2bad4970f5e9895ac7672e60
7
- data.tar.gz: 365c5e0a9a8e18e0d8e94069227fb54a80bd2954419d7d17141e3000e987295512e70c11ffc8b720173d90f194c27402100fba9887a136d36c97c875f0e3096d
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
- Ftp upload and download for Fastlane
15
+ Simple FTP plugins for Fastlane
16
16
 
17
- **Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
17
+ Support Download and Upload
18
18
 
19
19
  ## Example
20
20
 
21
- Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
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
- **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
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
  ```
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Ftp
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
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.2
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-07 00:00:00.000000000 Z
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.4.5.1
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