travis-custom-deploy 0.0.2 → 0.0.4
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/.travis.yml +11 -2
- data/README.md +3 -1
- data/lib/travis-custom-deploy/transfer/sftp.rb +1 -1
- data/lib/travis-custom-deploy/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 927a724fe12a338af1370cae82511b850c12c828
|
|
4
|
+
data.tar.gz: 759a48bea051d5e6e807cb24ab6c30fda83c63b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5aea3303f8454939edc2e663432d08003f9c82bc2514be1d15bebc3f3314d4b3e4e23a650cab70632c0706fe341b1c6b800d8100878d6c0b24ae0deb908eaf1f
|
|
7
|
+
data.tar.gz: 190f5d3d34dfbc8304256bd0a45c6c4e9f65fdc9c45b53e83c3216eb3d9bb8920685bf72c2a48554688b916d09da3ebd4366153d062af601a3d37889575a35d8
|
data/.travis.yml
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
language: ruby
|
|
2
2
|
cache: bundler
|
|
3
3
|
before_install:
|
|
4
|
-
|
|
4
|
+
- gem install bundler
|
|
5
5
|
rvm:
|
|
6
|
-
|
|
6
|
+
- 2.1.0
|
|
7
|
+
- 2.0.0
|
|
7
8
|
script: bundle exec rake
|
|
9
|
+
deploy:
|
|
10
|
+
provider: rubygems
|
|
11
|
+
api_key:
|
|
12
|
+
secure: fogw9FFH6muJHIu9/soA87R+YQJo+Zns4xS1zFR2XhkkAS92d/OspqSd3mqTtTzHrZH1yyLQOmhnR7hS1gsukPhXbVyUi07wp6DaZ3gH7zMJwkNnZgKqa0z1GscKAgzSu02f2hAIHs7Vh92RaQ90qp3u6oPATxKdj5tGm8oRZUo=
|
|
13
|
+
gem: travis-custom-deploy
|
|
14
|
+
on:
|
|
15
|
+
tags: true
|
|
16
|
+
repo: jens-na/travis-custom-deploy
|
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
travis-custom-deploy [](http://badge.fury.io/rb/travis-custom-deploy)
|
|
2
2
|
====================
|
|
3
|
-
[](https://travis-ci.org/jens-na/travis-custom-deploy)
|
|
3
|
+
[](https://travis-ci.org/jens-na/travis-custom-deploy)
|
|
4
|
+
[](https://coveralls.io/r/jens-na/travis-custom-deploy?branch=master)
|
|
5
|
+
[](https://codeclimate.com/github/jens-na/travis-custom-deploy)
|
|
4
6
|
[](https://gemnasium.com/jens-na/travis-custom-deploy)
|
|
5
7
|
|
|
6
8
|
Deploy your ruby based applications on your own server.
|
|
@@ -30,7 +30,7 @@ module TravisCustomDeploy
|
|
|
30
30
|
|
|
31
31
|
# Prepares the remote directory (remote trailing slash)
|
|
32
32
|
def prepare_remotedir
|
|
33
|
-
@remotedir = @options[
|
|
33
|
+
@remotedir = @options['remotedir']
|
|
34
34
|
@remotedir = "" if @remotedir.nil?
|
|
35
35
|
@remotedir = @remotedir[0..-2] if @remotedir[-1] == "/"
|
|
36
36
|
end
|