standup 0.3.27 → 0.3.28
Sign up to get free protection for your applications and to get access to all the features.
- data/.rvmrc +2 -1
- data/LICENSE +0 -0
- data/README.md +0 -0
- data/Rakefile +0 -0
- data/VERSION +1 -1
- data/lib/standup.rb +0 -0
- data/lib/standup/core_ext.rb +0 -0
- data/lib/standup/ec2.rb +0 -0
- data/lib/standup/ec2/base.rb +0 -0
- data/lib/standup/ec2/elastic_ip.rb +0 -0
- data/lib/standup/ec2/instance.rb +0 -0
- data/lib/standup/ec2/security_group.rb +0 -0
- data/lib/standup/ec2/volume.rb +0 -0
- data/lib/standup/node.rb +0 -0
- data/lib/standup/remoting.rb +0 -0
- data/lib/standup/scripts/base.rb +0 -0
- data/lib/standup/scripts/node.rb +0 -0
- data/lib/standup/settings.rb +0 -0
- data/scripts/allocate_ip.rb +0 -0
- data/scripts/appconsole.rb +0 -0
- data/scripts/basics.rb +0 -0
- data/scripts/basics/s3cfg +0 -0
- data/scripts/browse.rb +0 -0
- data/scripts/db_backup.rb +0 -0
- data/scripts/delayed_job.rb +0 -0
- data/scripts/delayed_job/delayed_job_monit.conf +0 -0
- data/scripts/download_db.rb +0 -0
- data/scripts/ec2.rb +0 -0
- data/scripts/generate.rb +0 -0
- data/scripts/generate/script.rb +0 -0
- data/scripts/init.rb +0 -0
- data/scripts/init/standup.yml +0 -0
- data/scripts/localize.rb +0 -0
- data/scripts/monit.rb +0 -0
- data/scripts/monit/monit +0 -0
- data/scripts/monit/monitrc +0 -0
- data/scripts/monit/sshd.conf +0 -0
- data/scripts/mysql.rb +0 -0
- data/scripts/passenger.rb +0 -0
- data/scripts/passenger/nginx +0 -0
- data/scripts/passenger/nginx.conf +0 -0
- data/scripts/passenger/nginx_monit.conf +0 -0
- data/scripts/postgresql.rb +0 -0
- data/scripts/postgresql/pg_hba.conf +0 -0
- data/scripts/postgresql/postgresql.conf +0 -0
- data/scripts/rake.rb +0 -0
- data/scripts/redis.rb +8 -1
- data/scripts/redis/redis-server +0 -0
- data/scripts/redis/redis.conf +0 -0
- data/scripts/redis/redis_monit.conf +0 -0
- data/scripts/resque.rb +0 -0
- data/scripts/resque/resque_monit.conf +0 -0
- data/scripts/ruby.rb +0 -0
- data/scripts/setup.rb +0 -0
- data/scripts/shell.rb +0 -0
- data/scripts/status.rb +0 -0
- data/scripts/terminate.rb +0 -0
- data/scripts/update.rb +0 -0
- data/scripts/upload_db.rb +0 -0
- data/scripts/watchlog.rb +0 -0
- data/scripts/webapp.rb +0 -0
- data/scripts/webapp/webapp.conf +0 -0
- data/standup.gemspec +3 -3
- metadata +5 -5
data/.rvmrc
CHANGED
data/LICENSE
CHANGED
File without changes
|
data/README.md
CHANGED
File without changes
|
data/Rakefile
CHANGED
File without changes
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.28
|
data/lib/standup.rb
CHANGED
File without changes
|
data/lib/standup/core_ext.rb
CHANGED
File without changes
|
data/lib/standup/ec2.rb
CHANGED
File without changes
|
data/lib/standup/ec2/base.rb
CHANGED
File without changes
|
File without changes
|
data/lib/standup/ec2/instance.rb
CHANGED
File without changes
|
File without changes
|
data/lib/standup/ec2/volume.rb
CHANGED
File without changes
|
data/lib/standup/node.rb
CHANGED
File without changes
|
data/lib/standup/remoting.rb
CHANGED
File without changes
|
data/lib/standup/scripts/base.rb
CHANGED
File without changes
|
data/lib/standup/scripts/node.rb
CHANGED
File without changes
|
data/lib/standup/settings.rb
CHANGED
File without changes
|
data/scripts/allocate_ip.rb
CHANGED
File without changes
|
data/scripts/appconsole.rb
CHANGED
File without changes
|
data/scripts/basics.rb
CHANGED
File without changes
|
data/scripts/basics/s3cfg
CHANGED
File without changes
|
data/scripts/browse.rb
CHANGED
File without changes
|
data/scripts/db_backup.rb
CHANGED
File without changes
|
data/scripts/delayed_job.rb
CHANGED
File without changes
|
File without changes
|
data/scripts/download_db.rb
CHANGED
File without changes
|
data/scripts/ec2.rb
CHANGED
File without changes
|
data/scripts/generate.rb
CHANGED
File without changes
|
data/scripts/generate/script.rb
CHANGED
File without changes
|
data/scripts/init.rb
CHANGED
File without changes
|
data/scripts/init/standup.yml
CHANGED
File without changes
|
data/scripts/localize.rb
CHANGED
File without changes
|
data/scripts/monit.rb
CHANGED
File without changes
|
data/scripts/monit/monit
CHANGED
File without changes
|
data/scripts/monit/monitrc
CHANGED
File without changes
|
data/scripts/monit/sshd.conf
CHANGED
File without changes
|
data/scripts/mysql.rb
CHANGED
File without changes
|
data/scripts/passenger.rb
CHANGED
File without changes
|
data/scripts/passenger/nginx
CHANGED
File without changes
|
File without changes
|
File without changes
|
data/scripts/postgresql.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
data/scripts/rake.rb
CHANGED
File without changes
|
data/scripts/redis.rb
CHANGED
@@ -4,10 +4,17 @@ Standup.script :node do
|
|
4
4
|
end
|
5
5
|
|
6
6
|
def install_from_resque
|
7
|
-
in_dir scripts.webapp.app_path do
|
7
|
+
in_dir "#{scripts.webapp.app_path}" do
|
8
|
+
sudo "git clone git://github.com/defunkt/resque.git"
|
9
|
+
end
|
10
|
+
|
11
|
+
in_dir "#{scripts.webapp.app_path}/resque" do
|
8
12
|
sudo "rake redis:install"
|
9
13
|
end
|
10
14
|
|
15
|
+
sudo "rm -fr #{scripts.webapp.app_path}/resque"
|
16
|
+
|
17
|
+
|
11
18
|
upload script_file('redis.conf'),
|
12
19
|
:to => '/etc/redis.conf',
|
13
20
|
:sudo => true
|
data/scripts/redis/redis-server
CHANGED
File without changes
|
data/scripts/redis/redis.conf
CHANGED
File without changes
|
File without changes
|
data/scripts/resque.rb
CHANGED
File without changes
|
File without changes
|
data/scripts/ruby.rb
CHANGED
File without changes
|
data/scripts/setup.rb
CHANGED
File without changes
|
data/scripts/shell.rb
CHANGED
File without changes
|
data/scripts/status.rb
CHANGED
File without changes
|
data/scripts/terminate.rb
CHANGED
File without changes
|
data/scripts/update.rb
CHANGED
File without changes
|
data/scripts/upload_db.rb
CHANGED
File without changes
|
data/scripts/watchlog.rb
CHANGED
File without changes
|
data/scripts/webapp.rb
CHANGED
File without changes
|
data/scripts/webapp/webapp.conf
CHANGED
File without changes
|
data/standup.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{standup}
|
8
|
-
s.version = "0.3.
|
8
|
+
s.version = "0.3.28"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Ilia Ablamonov", "Artem Orlov", "Cloud Castle Inc."]
|
12
|
-
s.date = %q{2011-
|
12
|
+
s.date = %q{2011-04-26}
|
13
13
|
s.default_executable = %q{standup}
|
14
14
|
s.email = %q{ilia@flamefork.ru}
|
15
15
|
s.executables = ["standup"]
|
@@ -86,7 +86,7 @@ Gem::Specification.new do |s|
|
|
86
86
|
]
|
87
87
|
s.homepage = %q{https://github.com/cloudcastle/standup}
|
88
88
|
s.require_paths = ["lib"]
|
89
|
-
s.rubygems_version = %q{1.
|
89
|
+
s.rubygems_version = %q{1.6.2}
|
90
90
|
s.summary = %q{Standup is an application deployment and infrastructure management tool for Rails and Amazon EC2}
|
91
91
|
|
92
92
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: standup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 43
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 0.3.
|
9
|
+
- 28
|
10
|
+
version: 0.3.28
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Ilia Ablamonov
|
@@ -17,7 +17,7 @@ autorequire:
|
|
17
17
|
bindir: bin
|
18
18
|
cert_chain: []
|
19
19
|
|
20
|
-
date: 2011-
|
20
|
+
date: 2011-04-26 00:00:00 +04:00
|
21
21
|
default_executable: standup
|
22
22
|
dependencies:
|
23
23
|
- !ruby/object:Gem::Dependency
|
@@ -247,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
247
247
|
requirements: []
|
248
248
|
|
249
249
|
rubyforge_project:
|
250
|
-
rubygems_version: 1.
|
250
|
+
rubygems_version: 1.6.2
|
251
251
|
signing_key:
|
252
252
|
specification_version: 3
|
253
253
|
summary: Standup is an application deployment and infrastructure management tool for Rails and Amazon EC2
|