capistrano3-git-push 0.0.1 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/capistrano-git-push.gemspec +1 -1
- data/capistrano3-git-push-0.0.1.gem +0 -0
- data/lib/capistrano3/tasks/git-push.rake +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da9a62c8888113ccfea90097650dfcabc14cc511
|
4
|
+
data.tar.gz: 822652b9d0fb0c9cf5c95b462446e1a04b00d864
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 '
|
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.
|
data/capistrano-git-push.gemspec
CHANGED
@@ -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
|
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
|
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
|
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:
|
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.
|
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
|