capistrano3-git-push 0.0.1 → 0.1.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 32b3ea04b2312e940eeea95b42e9eab5a73adc5f
4
- data.tar.gz: 4542ff86f03604c1a28a3ea493cb887de058b9c8
3
+ metadata.gz: da9a62c8888113ccfea90097650dfcabc14cc511
4
+ data.tar.gz: 822652b9d0fb0c9cf5c95b462446e1a04b00d864
5
5
  SHA512:
6
- metadata.gz: 9eea2818de25d10c542ab3a9da5e4a4d4426ff3e07506796839232a4f32ea3a535f7f09a0dfae6c59f6a463c3c400b99d8d8b1ebdd69d84a635a5c133ba2d8ea
7
- data.tar.gz: 7a97bc846a081da8e9c7c4cca1ceb0d9640d1ab1f5f4e290ce8e280e14f1c9363625ec6f40ee86c7cd20806d39688d4ef443d46bfb6ae3e34b43995c5aeb89a5
6
+ metadata.gz: 106e8f961267463848066a452ad54a9e1e605d0298e2f61bd1235898d6733f9fc01ec39e6580015a30c6a8c006084c4613cba14f04bcc1bbc75accfb32bc802c
7
+ data.tar.gz: 256a2fb95e48d59129755fa68fe48ad19d2afc11d6434ca2d09d7f267f2189ba0ddbaa55e60339ece1d605904d7f6e97bf6be5937059a9ee8a2ce16656329347
data/README.md CHANGED
@@ -18,7 +18,7 @@ Add this line to your application's Gemfile:
18
18
 
19
19
  ```ruby
20
20
  group :development do
21
- gem 'capistrano-ubuntu-server-prepare'
21
+ gem 'capistrano3-git-push'
22
22
  end
23
23
  ```
24
24
 
@@ -30,4 +30,4 @@ And then add ``` require 'capistrano3/git-push' ``` to your ``` Capfile ```
30
30
 
31
31
  ## My other works
32
32
 
33
- Take a look at my [capistrano3-ubuntu-server-prepare](https://github.com/goooseman/capistrano3-ubuntu-server-prepare) (it can install Nginx, PostgreSQL, Redis, RVM, Rails, Bundler, Imagemagick and do some other helpfull things to prepare your blank Ubuntu server for the first deploy) Capistrano (v3) gems.
33
+ Take a look at my [capistrano3-ubuntu-server-prepare](https://github.com/goooseman/capistrano3-ubuntu-server-prepare) (it can install Nginx, PostgreSQL, Redis, RVM, Rails, Bundler, Imagemagick and do some other helpfull things to prepare your blank Ubuntu server for the first deploy) and [capistrano3-delayed-job](https://github.com/goooseman/capistrano3-delayed-job) (delayed-job daemon management) Capistrano (v3) gems.
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "capistrano3-git-push"
7
- spec.version = "0.0.1"
7
+ spec.version = "0.1.0"
8
8
  spec.authors = ["goooseman"]
9
9
  spec.email = ["inbox@goooseman.ru"]
10
10
  spec.summary = "A task for Capistrano v3 to add, commit and push changes to git repo"
Binary file
@@ -10,10 +10,10 @@ namespace :git do
10
10
  run_locally do
11
11
  execute "git add -A"
12
12
  execute "git commit -m '#{fetch(:commit_message)}'"
13
- execute "git push"
14
13
  end
15
14
  end
16
15
  end
16
+ execute "git push"
17
17
  end
18
18
  end
19
19
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano3-git-push
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - goooseman
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-16 00:00:00.000000000 Z
11
+ date: 2015-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -72,6 +72,7 @@ files:
72
72
  - README.md
73
73
  - Rakefile
74
74
  - capistrano-git-push.gemspec
75
+ - capistrano3-git-push-0.0.1.gem
75
76
  - lib/capistrano3-git-push.rb
76
77
  - lib/capistrano3/git-push.rb
77
78
  - lib/capistrano3/tasks/git-push.rake
@@ -95,7 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
96
  version: '0'
96
97
  requirements: []
97
98
  rubyforge_project:
98
- rubygems_version: 2.2.2
99
+ rubygems_version: 2.4.5
99
100
  signing_key:
100
101
  specification_version: 4
101
102
  summary: A task for Capistrano v3 to add, commit and push changes to git repo