capistrano3-ubuntu-server-prepare 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6918336418064b0bcc01d9b70ab1e4447a8e73b8
|
4
|
+
data.tar.gz: dbf8a34f34252c9d44e6edb6cab9245d36600e58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99f60140fce94804f3ed49d45fbc406f4f59581a3dfea208794e20f8b5645eca300b9aedebde1285bb4ea161c9dfb1069ccfa763899e19237999881b523ee1ed
|
7
|
+
data.tar.gz: 9b7ff2f176afbc1085ca1d99c0ced3ece6e8d93cd0363e73efa9bade824b2b52ef8827c09c975cd8d122a1b8d3cb8a2f1a0a5723eae0083affe4ac1013fb82ab
|
data/README.md
CHANGED
@@ -173,4 +173,8 @@ to the end of the file
|
|
173
173
|
------ log/ # Rails and Unicorn log file here
|
174
174
|
------ tmp/pids/ # Unicorn pid files here
|
175
175
|
------ tmp/sockets/ # Unicorn socket files here
|
176
|
-
```
|
176
|
+
```
|
177
|
+
|
178
|
+
## My other works
|
179
|
+
|
180
|
+
Take a look at my [capistrano3-delayed-job](https://github.com/goooseman/capistrano3-delayed-job) (delayed-job daemon management) and [capistrano3-git-push](https://github.com/goooseman/capistrano3-git-push) (automated git add, commit, push before each deploy) Capistrano (v3) gems.
|
@@ -4,11 +4,11 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "capistrano3-ubuntu-server-prepare"
|
7
|
-
spec.version = "0.0.
|
7
|
+
spec.version = "0.0.2"
|
8
8
|
spec.authors = ["goooseman"]
|
9
9
|
spec.email = ["inbox@goooseman.ru"]
|
10
10
|
spec.summary = "A task for Capistrano v3 to prepare Ubuntu 14.04 server for first deployment"
|
11
|
-
spec.description = "Can install nginx, ngx_pagespeed, postgreSQL, Redis, RVM, Ruby, Rails, Bundler"
|
11
|
+
spec.description = "Can install nginx, ngx_pagespeed, postgreSQL, Redis, RVM, Ruby, Rails, Bundler. See homepage for additional inforation and instructions."
|
12
12
|
spec.homepage = "http://github.com/goooseman/capistrano3-ubuntu-server-prepare"
|
13
13
|
spec.license = "MIT"
|
14
14
|
|
Binary file
|
@@ -272,7 +272,7 @@ namespace :ubuntu_server_prepare do
|
|
272
272
|
desc 'Install RVM with rails'
|
273
273
|
task :rvm_install do
|
274
274
|
on roles(:all) do
|
275
|
-
execute sudo_command + 'apt-get -y install git curl python-software-properties'
|
275
|
+
execute sudo_command + 'apt-get -y install git curl python-software-properties software-properties-common'
|
276
276
|
execute sudo_command + 'add-apt-repository -y ppa:chris-lea/node.js'
|
277
277
|
execute sudo_command + 'apt-get update'
|
278
278
|
execute sudo_command + 'apt-get -y install nodejs gawk g++ gcc make libreadline6-dev zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 autoconf libgdbm-dev libncurses5-dev automake libtool bison pkg-config libffi-dev'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano3-ubuntu-server-prepare
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- goooseman
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-12-
|
11
|
+
date: 2014-12-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: highline
|
@@ -73,7 +73,7 @@ dependencies:
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: 3.1.0
|
75
75
|
description: Can install nginx, ngx_pagespeed, postgreSQL, Redis, RVM, Ruby, Rails,
|
76
|
-
Bundler
|
76
|
+
Bundler. See homepage for additional inforation and instructions.
|
77
77
|
email:
|
78
78
|
- inbox@goooseman.ru
|
79
79
|
executables: []
|
@@ -86,6 +86,7 @@ files:
|
|
86
86
|
- README.md
|
87
87
|
- Rakefile
|
88
88
|
- capistrano-ubuntu-server-prepare.gemspec
|
89
|
+
- capistrano3-ubuntu-server-prepare-0.0.1.gem
|
89
90
|
- config/production/nginx/nginx.conf
|
90
91
|
- config/production/nginx/nginx_with_pagespeed.conf
|
91
92
|
- config/production/nginx/upstart.conf
|