capistrano-synced-folder 0.0.1

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 9bd88494a43fb8c715afc14ec37a8aff452d5b34
4
+ data.tar.gz: b5f3cc155181a88a8ec8e6f1af01d3ae74101e80
5
+ SHA512:
6
+ metadata.gz: be624aa0fe29342fa527f129ce40b07907d2281bdf5a2ee32deca83a93529f7e4352ff30f75b962ae7adca230a0e1d3b9bee5c36d31bf3d9443470b0ab584a75
7
+ data.tar.gz: b6091e0082dc959ce4d0b594d128e03c7a2f1373c821edce31f669c6678196beac997eb006f17df711927396481d9c622189c36f4129bae0c130fbe7695b5a16
@@ -0,0 +1 @@
1
+ load File.expand_path('../tasks/synced_folder.rake', __FILE__)
@@ -0,0 +1,5 @@
1
+ class CapistranoSyncedFolder
2
+
3
+ VERSION = '0.0.1'
4
+
5
+ end
@@ -0,0 +1,21 @@
1
+ namespace :synced_folder do
2
+
3
+ def synced_path
4
+ "#{deploy_to}/synced"
5
+ end
6
+
7
+ task :check do
8
+ end
9
+
10
+ task :create_release do
11
+ on release_roles :all do
12
+ within deploy_to do
13
+ execute :cp, '-rv', synced_path, release_path
14
+ end
15
+ end
16
+ end
17
+
18
+ task :set_current_revision do
19
+ end
20
+
21
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: capistrano-synced-folder
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Si Wilkins
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-06-06 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email: si.wilkins@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/capistrano/synced_folder.rb
20
+ - lib/capistrano/synced_folder/version.rb
21
+ - lib/capistrano/tasks/synced_folder.rake
22
+ homepage:
23
+ licenses: []
24
+ metadata: {}
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubyforge_project:
41
+ rubygems_version: 2.4.5.1
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: Carries out capistrano deployment from a synced folder
45
+ test_files: []