standup 0.3.27 → 0.3.28

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. data/.rvmrc +2 -1
  2. data/LICENSE +0 -0
  3. data/README.md +0 -0
  4. data/Rakefile +0 -0
  5. data/VERSION +1 -1
  6. data/lib/standup.rb +0 -0
  7. data/lib/standup/core_ext.rb +0 -0
  8. data/lib/standup/ec2.rb +0 -0
  9. data/lib/standup/ec2/base.rb +0 -0
  10. data/lib/standup/ec2/elastic_ip.rb +0 -0
  11. data/lib/standup/ec2/instance.rb +0 -0
  12. data/lib/standup/ec2/security_group.rb +0 -0
  13. data/lib/standup/ec2/volume.rb +0 -0
  14. data/lib/standup/node.rb +0 -0
  15. data/lib/standup/remoting.rb +0 -0
  16. data/lib/standup/scripts/base.rb +0 -0
  17. data/lib/standup/scripts/node.rb +0 -0
  18. data/lib/standup/settings.rb +0 -0
  19. data/scripts/allocate_ip.rb +0 -0
  20. data/scripts/appconsole.rb +0 -0
  21. data/scripts/basics.rb +0 -0
  22. data/scripts/basics/s3cfg +0 -0
  23. data/scripts/browse.rb +0 -0
  24. data/scripts/db_backup.rb +0 -0
  25. data/scripts/delayed_job.rb +0 -0
  26. data/scripts/delayed_job/delayed_job_monit.conf +0 -0
  27. data/scripts/download_db.rb +0 -0
  28. data/scripts/ec2.rb +0 -0
  29. data/scripts/generate.rb +0 -0
  30. data/scripts/generate/script.rb +0 -0
  31. data/scripts/init.rb +0 -0
  32. data/scripts/init/standup.yml +0 -0
  33. data/scripts/localize.rb +0 -0
  34. data/scripts/monit.rb +0 -0
  35. data/scripts/monit/monit +0 -0
  36. data/scripts/monit/monitrc +0 -0
  37. data/scripts/monit/sshd.conf +0 -0
  38. data/scripts/mysql.rb +0 -0
  39. data/scripts/passenger.rb +0 -0
  40. data/scripts/passenger/nginx +0 -0
  41. data/scripts/passenger/nginx.conf +0 -0
  42. data/scripts/passenger/nginx_monit.conf +0 -0
  43. data/scripts/postgresql.rb +0 -0
  44. data/scripts/postgresql/pg_hba.conf +0 -0
  45. data/scripts/postgresql/postgresql.conf +0 -0
  46. data/scripts/rake.rb +0 -0
  47. data/scripts/redis.rb +8 -1
  48. data/scripts/redis/redis-server +0 -0
  49. data/scripts/redis/redis.conf +0 -0
  50. data/scripts/redis/redis_monit.conf +0 -0
  51. data/scripts/resque.rb +0 -0
  52. data/scripts/resque/resque_monit.conf +0 -0
  53. data/scripts/ruby.rb +0 -0
  54. data/scripts/setup.rb +0 -0
  55. data/scripts/shell.rb +0 -0
  56. data/scripts/status.rb +0 -0
  57. data/scripts/terminate.rb +0 -0
  58. data/scripts/update.rb +0 -0
  59. data/scripts/upload_db.rb +0 -0
  60. data/scripts/watchlog.rb +0 -0
  61. data/scripts/webapp.rb +0 -0
  62. data/scripts/webapp/webapp.conf +0 -0
  63. data/standup.gemspec +3 -3
  64. metadata +5 -5
data/.rvmrc CHANGED
@@ -1,2 +1,3 @@
1
- rvm ree@standup
1
+ rvm ree@standup --create
2
+
2
3
 
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.27
1
+ 0.3.28
data/lib/standup.rb CHANGED
File without changes
File without changes
data/lib/standup/ec2.rb CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
data/lib/standup/node.rb CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
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
File without changes
File without changes
File without changes
data/scripts/ec2.rb CHANGED
File without changes
data/scripts/generate.rb CHANGED
File without changes
File without changes
data/scripts/init.rb CHANGED
File without changes
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
File without changes
File without changes
data/scripts/mysql.rb CHANGED
File without changes
data/scripts/passenger.rb CHANGED
File without changes
File without changes
File without changes
File without changes
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
File without changes
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
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.27"
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-03-28}
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.4.2}
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: 37
4
+ hash: 43
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 27
10
- version: 0.3.27
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-03-28 00:00:00 +04:00
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.4.2
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