capistrano-gtools 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: cbee9d9d6b55e7dd33463656f384ede55729f276
4
+ data.tar.gz: c77da2cdb181cb5179e0ac6065655cee86459068
5
+ SHA512:
6
+ metadata.gz: c8bd5075e1fa62d4359cec5f4fdf9af928676edbbe097174b4722e9c44a2a640a76baeeb2ed17d1848bc4a094ae8cfe71f047651b2ddf3896e9d4e08b589e524
7
+ data.tar.gz: e381b33c48223cc4c0715a85fb5521a8b4f53064ce99c39f441b34c022efd2c2d6af4344734626979a88c7f386b92e0543c35e55daa2c8438d9bbc393f3947c0
File without changes
@@ -0,0 +1 @@
1
+ load File.expand_path('../tasks/gtools.cap', __FILE__)
@@ -0,0 +1,13 @@
1
+ namespace :gtools do
2
+ desc <<-DESC
3
+ Set cached copy's remote URL to the actual :repo_url
4
+ Useful after moving git repository
5
+ DESC
6
+ task :update_repo_url do
7
+ on roles(:all) do
8
+ within repo_path do
9
+ execute :git, 'remote', 'set-url', 'origin', fetch(:repo_url)
10
+ end
11
+ end
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,60 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: capistrano-gtools
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Alex Svetkin
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-11-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: capistrano
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.0'
27
+ description: Capistrano recipe for git manipulations
28
+ email: alex.svetkin@gmail.com
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - lib/capistrano-gtools.rb
34
+ - lib/capistrano/gtools.rb
35
+ - lib/capistrano/tasks/gtools.cap
36
+ homepage: https://github.com/inventos/capistrano-gtools
37
+ licenses:
38
+ - MIT
39
+ metadata: {}
40
+ post_install_message:
41
+ rdoc_options: []
42
+ require_paths:
43
+ - lib
44
+ required_ruby_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ required_rubygems_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ requirements: []
55
+ rubyforge_project:
56
+ rubygems_version: 2.4.3
57
+ signing_key:
58
+ specification_version: 4
59
+ summary: capistrano-gtools
60
+ test_files: []