git_deployer 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.
- data/Rakefile +4 -4
- data/VERSION +1 -1
- data/bin/gitdeploy +15 -2
- data/git_deployer.gemspec +60 -57
- data/lib/git_deployer.rb +0 -1
- metadata +15 -5
data/Rakefile
CHANGED
@@ -6,12 +6,12 @@ begin
|
|
6
6
|
Jeweler::Tasks.new do |gem|
|
7
7
|
gem.name = "git_deployer"
|
8
8
|
gem.summary = %Q{Automatic installer for applications hosted with Git}
|
9
|
-
gem.description = %Q{Automatic installer for applications hosted with Git}
|
9
|
+
gem.description = %Q{Automatic installer and update scheduler for applications hosted with Git}
|
10
10
|
gem.email = "contato@pftech.com.br"
|
11
11
|
gem.homepage = "http://github.com/pftech/git_deployer"
|
12
|
-
gem.authors = ["
|
13
|
-
gem.add_dependency 'schacon-git'
|
14
|
-
|
12
|
+
gem.authors = ["Plinio Balduino"]
|
13
|
+
gem.add_dependency 'schacon-git', '>= 1.2.2'
|
14
|
+
gem.add_dependency 'javan-whenever', '>= 0.3.7'
|
15
15
|
end
|
16
16
|
Jeweler::GemcutterTasks.new
|
17
17
|
rescue LoadError
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0
|
1
|
+
0.1.0
|
data/bin/gitdeploy
CHANGED
@@ -1,2 +1,15 @@
|
|
1
|
-
#!/usr/bin/ruby
|
2
|
-
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'optparse'
|
3
|
+
require 'git_deployer'
|
4
|
+
|
5
|
+
OptionParser.new do |opts|
|
6
|
+
opts.banner = "Usage: #{File.basename($0)} [path]"
|
7
|
+
|
8
|
+
begin
|
9
|
+
opts.parse!(ARGV)
|
10
|
+
rescue OptionParser::ParseError => e
|
11
|
+
warn e.message
|
12
|
+
puts opts
|
13
|
+
exit 1
|
14
|
+
end
|
15
|
+
end
|
data/git_deployer.gemspec
CHANGED
@@ -1,57 +1,60 @@
|
|
1
|
-
# Generated by jeweler
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in
|
4
|
-
# -*- encoding: utf-8 -*-
|
5
|
-
|
6
|
-
Gem::Specification.new do |s|
|
7
|
-
s.name = %q{git_deployer}
|
8
|
-
s.version = "0.0
|
9
|
-
|
10
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
-
s.authors = ["
|
12
|
-
s.date = %q{2009-11-
|
13
|
-
s.default_executable = %q{gitdeploy}
|
14
|
-
s.description = %q{Automatic installer for applications hosted with Git}
|
15
|
-
s.email = %q{contato@pftech.com.br}
|
16
|
-
s.executables = ["gitdeploy"]
|
17
|
-
s.extra_rdoc_files = [
|
18
|
-
"LICENSE",
|
19
|
-
"README.rdoc"
|
20
|
-
]
|
21
|
-
s.files = [
|
22
|
-
".document",
|
23
|
-
".gitignore",
|
24
|
-
"LICENSE",
|
25
|
-
"README.rdoc",
|
26
|
-
"Rakefile",
|
27
|
-
"VERSION",
|
28
|
-
"bin/gitdeploy",
|
29
|
-
"git_deployer.gemspec",
|
30
|
-
"lib/git_deployer.rb",
|
31
|
-
"test/helper.rb",
|
32
|
-
"test/test_git_deployer.rb"
|
33
|
-
]
|
34
|
-
s.homepage = %q{http://github.com/pftech/git_deployer}
|
35
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
36
|
-
s.require_paths = ["lib"]
|
37
|
-
s.rubygems_version = %q{1.3.5}
|
38
|
-
s.summary = %q{Automatic installer for applications hosted with Git}
|
39
|
-
s.test_files = [
|
40
|
-
"test/helper.rb",
|
41
|
-
"test/test_git_deployer.rb"
|
42
|
-
]
|
43
|
-
|
44
|
-
if s.respond_to? :specification_version then
|
45
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
46
|
-
s.specification_version = 3
|
47
|
-
|
48
|
-
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
49
|
-
s.add_runtime_dependency(%q<schacon-git>, [">=
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{git_deployer}
|
8
|
+
s.version = "0.1.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Plinio Balduino"]
|
12
|
+
s.date = %q{2009-11-24}
|
13
|
+
s.default_executable = %q{gitdeploy}
|
14
|
+
s.description = %q{Automatic installer and update scheduler for applications hosted with Git}
|
15
|
+
s.email = %q{contato@pftech.com.br}
|
16
|
+
s.executables = ["gitdeploy"]
|
17
|
+
s.extra_rdoc_files = [
|
18
|
+
"LICENSE",
|
19
|
+
"README.rdoc"
|
20
|
+
]
|
21
|
+
s.files = [
|
22
|
+
".document",
|
23
|
+
".gitignore",
|
24
|
+
"LICENSE",
|
25
|
+
"README.rdoc",
|
26
|
+
"Rakefile",
|
27
|
+
"VERSION",
|
28
|
+
"bin/gitdeploy",
|
29
|
+
"git_deployer.gemspec",
|
30
|
+
"lib/git_deployer.rb",
|
31
|
+
"test/helper.rb",
|
32
|
+
"test/test_git_deployer.rb"
|
33
|
+
]
|
34
|
+
s.homepage = %q{http://github.com/pftech/git_deployer}
|
35
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
36
|
+
s.require_paths = ["lib"]
|
37
|
+
s.rubygems_version = %q{1.3.5}
|
38
|
+
s.summary = %q{Automatic installer for applications hosted with Git}
|
39
|
+
s.test_files = [
|
40
|
+
"test/helper.rb",
|
41
|
+
"test/test_git_deployer.rb"
|
42
|
+
]
|
43
|
+
|
44
|
+
if s.respond_to? :specification_version then
|
45
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
46
|
+
s.specification_version = 3
|
47
|
+
|
48
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
49
|
+
s.add_runtime_dependency(%q<schacon-git>, [">= 1.2.2"])
|
50
|
+
s.add_runtime_dependency(%q<javan-whenever>, [">= 0.3.7"])
|
51
|
+
else
|
52
|
+
s.add_dependency(%q<schacon-git>, [">= 1.2.2"])
|
53
|
+
s.add_dependency(%q<javan-whenever>, [">= 0.3.7"])
|
54
|
+
end
|
55
|
+
else
|
56
|
+
s.add_dependency(%q<schacon-git>, [">= 1.2.2"])
|
57
|
+
s.add_dependency(%q<javan-whenever>, [">= 0.3.7"])
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
data/lib/git_deployer.rb
CHANGED
@@ -1 +0,0 @@
|
|
1
|
-
puts "Ronaldo!"
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git_deployer
|
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
|
+
- Plinio Balduino
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-11-
|
12
|
+
date: 2009-11-24 00:00:00 -02:00
|
13
13
|
default_executable: gitdeploy
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -20,9 +20,19 @@ dependencies:
|
|
20
20
|
requirements:
|
21
21
|
- - ">="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version:
|
23
|
+
version: 1.2.2
|
24
24
|
version:
|
25
|
-
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: javan-whenever
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.3.7
|
34
|
+
version:
|
35
|
+
description: Automatic installer and update scheduler for applications hosted with Git
|
26
36
|
email: contato@pftech.com.br
|
27
37
|
executables:
|
28
38
|
- gitdeploy
|