travis-custom-deploy 0.0.2 → 0.0.4

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: 76a456e9755c9e0f605bf5284750ff4143d3fac9
4
- data.tar.gz: 3db5ba20e932a1139ca16258f764ba6f3b1fe91b
3
+ metadata.gz: 927a724fe12a338af1370cae82511b850c12c828
4
+ data.tar.gz: 759a48bea051d5e6e807cb24ab6c30fda83c63b2
5
5
  SHA512:
6
- metadata.gz: 6d08feb91cd3845d41ccf3ed034d174d7f80e41b9ab908b0d2b6d41e3e1623adfb1c645cbf100657c94ba644c6f5e020d4132c6b4f3e4e274fd95aa3e1416c88
7
- data.tar.gz: 0bf6ac51455bd1aca593e72dbbeaac76f872c349f498fe37b64bdea8bb4dbe00ca254f2c6ae3b418d2d3b4f0189702dd64bef34c0ac1585e8fee9e33222803d3
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
- - gem install bundler
4
+ - gem install bundler
5
5
  rvm:
6
- - 2.1.0
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 [![Gem Version](https://badge.fury.io/rb/travis-custom-deploy.png)](http://badge.fury.io/rb/travis-custom-deploy)
2
2
  ====================
3
- [![Build Status](https://travis-ci.org/jens-na/travis-custom-deploy.png?branch=master)](https://travis-ci.org/jens-na/travis-custom-deploy) [![Coverage Status](https://coveralls.io/repos/jens-na/travis-custom-deploy/badge.png?branch=master)](https://coveralls.io/r/jens-na/travis-custom-deploy?branch=master)
3
+ [![Build Status](https://travis-ci.org/jens-na/travis-custom-deploy.png?branch=master)](https://travis-ci.org/jens-na/travis-custom-deploy)
4
+ [![Coverage Status](https://coveralls.io/repos/jens-na/travis-custom-deploy/badge.png?branch=master)](https://coveralls.io/r/jens-na/travis-custom-deploy?branch=master)
5
+ [![Code Climate](https://codeclimate.com/github/jens-na/travis-custom-deploy.png)](https://codeclimate.com/github/jens-na/travis-custom-deploy)
4
6
  [![Dependency Status](https://gemnasium.com/jens-na/travis-custom-deploy.png)](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[:remotedir]
33
+ @remotedir = @options['remotedir']
34
34
  @remotedir = "" if @remotedir.nil?
35
35
  @remotedir = @remotedir[0..-2] if @remotedir[-1] == "/"
36
36
  end
@@ -1,5 +1,5 @@
1
1
  module TravisCustomDeploy
2
2
 
3
- VERSION = "0.0.2"
3
+ VERSION = "0.0.4"
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: travis-custom-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jens Nazarenus