chewbacca 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +47 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/lib/chewbacca.rb +56 -0
- data/test/helper.rb +10 -0
- data/test/test_chewbacca.rb +7 -0
- metadata +74 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Julio Capote
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
= chewbacca
|
2
|
+
|
3
|
+
Chewbacca is a set of rake tasks that will push/pull files in the current directoy from/to a remote server according to an arbitrary manifest file (manifest.rb)
|
4
|
+
|
5
|
+
|
6
|
+
== Dependencies
|
7
|
+
* scp
|
8
|
+
* public key authentication (unless you love typing passwords)
|
9
|
+
|
10
|
+
== Installation
|
11
|
+
|
12
|
+
Install the gem:
|
13
|
+
|
14
|
+
gem install chewbacca
|
15
|
+
|
16
|
+
Require and include it in your Rakefile (create one if you don't have one)
|
17
|
+
|
18
|
+
require 'chewbacca'
|
19
|
+
include Chewbacca
|
20
|
+
|
21
|
+
Create a file named manifest.rb, this file needs to declare three constants: MANIFEST, USER, and HOST. Example:
|
22
|
+
|
23
|
+
USER = "deploy"
|
24
|
+
HOST = "example.com"
|
25
|
+
MANIFEST = {
|
26
|
+
"path/to/local-file-1" => "path/to/remote/file-1",
|
27
|
+
"path/to/local-file-2" => "path/to/remote/file-2"
|
28
|
+
}
|
29
|
+
|
30
|
+
== Usage
|
31
|
+
|
32
|
+
To move the files from the left of the manifest, to the right (local to remote), run
|
33
|
+
|
34
|
+
rake chewbacca:push
|
35
|
+
|
36
|
+
To do the opposite, download the files from the right of the manifest to the left (remote to local)
|
37
|
+
|
38
|
+
rake chewbacca:pull
|
39
|
+
|
40
|
+
|
41
|
+
== Notes
|
42
|
+
|
43
|
+
Keep in mind when configuring manifest paths that the underlying mechanism is scp, in the format of scp local-file user@host:remote-file.
|
44
|
+
|
45
|
+
== Copyright
|
46
|
+
|
47
|
+
Copyright (c) 2010 Julio Capote See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "chewbacca"
|
8
|
+
gem.summary = %Q{chewbacca is a set of rake tasks to facilitate the management of remote files.}
|
9
|
+
gem.description = %Q{chewbacca is a set of rake tasks that read a manifest file and synchronize the current directory to the remote server according to a specified mapping.}
|
10
|
+
gem.email = "jcapote@gmail.com"
|
11
|
+
gem.homepage = "http://github.com/capotej/chewbacca"
|
12
|
+
gem.authors = ["capotej"]
|
13
|
+
gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
|
14
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
15
|
+
end
|
16
|
+
Jeweler::GemcutterTasks.new
|
17
|
+
rescue LoadError
|
18
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
19
|
+
end
|
20
|
+
|
21
|
+
require 'rake/testtask'
|
22
|
+
Rake::TestTask.new(:test) do |test|
|
23
|
+
test.libs << 'lib' << 'test'
|
24
|
+
test.pattern = 'test/**/test_*.rb'
|
25
|
+
test.verbose = true
|
26
|
+
end
|
27
|
+
|
28
|
+
begin
|
29
|
+
require 'rcov/rcovtask'
|
30
|
+
Rcov::RcovTask.new do |test|
|
31
|
+
test.libs << 'test'
|
32
|
+
test.pattern = 'test/**/test_*.rb'
|
33
|
+
test.verbose = true
|
34
|
+
end
|
35
|
+
rescue LoadError
|
36
|
+
task :rcov do
|
37
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
task :test => :check_dependencies
|
42
|
+
|
43
|
+
task :default => :test
|
44
|
+
|
45
|
+
require 'rake/rdoctask'
|
46
|
+
Rake::RDocTask.new do |rdoc|
|
47
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
48
|
+
|
49
|
+
rdoc.rdoc_dir = 'rdoc'
|
50
|
+
rdoc.title = "chewbacca #{version}"
|
51
|
+
rdoc.rdoc_files.include('README*')
|
52
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
53
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0.0
|
data/lib/chewbacca.rb
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
module Chewbacca
|
2
|
+
def Chewbacca.included(klass)
|
3
|
+
load 'manifest.rb'
|
4
|
+
klass.class_eval do
|
5
|
+
namespace :chewbacca do
|
6
|
+
desc "push changed files according to manifest.rb"
|
7
|
+
task :push do
|
8
|
+
push
|
9
|
+
end
|
10
|
+
desc "pull all files according to manifest.rb"
|
11
|
+
task :pull do
|
12
|
+
pull
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def push
|
19
|
+
if File.exist?('.cash')
|
20
|
+
times = Marshal.load(File.open('.cash').read)
|
21
|
+
else
|
22
|
+
times = {}
|
23
|
+
end
|
24
|
+
MANIFEST.each do |local,remote|
|
25
|
+
if File.exist?(local)
|
26
|
+
print "#{local} : "
|
27
|
+
if times[local]
|
28
|
+
if times[local] < File.open(local).mtime.to_i
|
29
|
+
print "gwroar! uploading to #{remote}\n"
|
30
|
+
system "scp #{local} #{USER}@#{HOST}:#{remote}"
|
31
|
+
times[local] = File.open(local).mtime.to_i
|
32
|
+
else
|
33
|
+
print "arghffff! no changes\n"
|
34
|
+
end
|
35
|
+
else
|
36
|
+
times[local] = File.open(local).mtime.to_i
|
37
|
+
print "gwroar! uploading to #{remote}\n"
|
38
|
+
system "scp #{local} #{USER}@#{HOST}:#{remote}"
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
File.open('.cash','w') do |f|
|
43
|
+
f.puts Marshal.dump(times)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def pull
|
48
|
+
MANIFEST.each do |local,remote|
|
49
|
+
puts "harmmff! downloading #{remote} to #{local}"
|
50
|
+
system "scp #{USER}@#{HOST}:#{remote} #{local}"
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
end
|
55
|
+
|
56
|
+
|
data/test/helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: chewbacca
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- capotej
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2010-02-07 00:00:00 -08:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: thoughtbot-shoulda
|
17
|
+
type: :development
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
description: chewbacca is a set of rake tasks that read a manifest file and synchronize the current directory to the remote server according to a specified mapping.
|
26
|
+
email: jcapote@gmail.com
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files:
|
32
|
+
- LICENSE
|
33
|
+
- README.rdoc
|
34
|
+
files:
|
35
|
+
- .document
|
36
|
+
- .gitignore
|
37
|
+
- LICENSE
|
38
|
+
- README.rdoc
|
39
|
+
- Rakefile
|
40
|
+
- VERSION
|
41
|
+
- lib/chewbacca.rb
|
42
|
+
- test/helper.rb
|
43
|
+
- test/test_chewbacca.rb
|
44
|
+
has_rdoc: true
|
45
|
+
homepage: http://github.com/capotej/chewbacca
|
46
|
+
licenses: []
|
47
|
+
|
48
|
+
post_install_message:
|
49
|
+
rdoc_options:
|
50
|
+
- --charset=UTF-8
|
51
|
+
require_paths:
|
52
|
+
- lib
|
53
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: "0"
|
58
|
+
version:
|
59
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: "0"
|
64
|
+
version:
|
65
|
+
requirements: []
|
66
|
+
|
67
|
+
rubyforge_project:
|
68
|
+
rubygems_version: 1.3.5
|
69
|
+
signing_key:
|
70
|
+
specification_version: 3
|
71
|
+
summary: chewbacca is a set of rake tasks to facilitate the management of remote files.
|
72
|
+
test_files:
|
73
|
+
- test/helper.rb
|
74
|
+
- test/test_chewbacca.rb
|