deploy_mate 0.18.4 → 0.20

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 221d9dcd04b1b34307ac5f64f794acac59350c48
4
- data.tar.gz: 54a6b901d5cac8605209b3a4a85d00833685a031
3
+ metadata.gz: bbadfa76146d4f7da098a05d65a15b28897b5fdd
4
+ data.tar.gz: 65afaa22c3d1b9a2c456de81186e072bd0ff5269
5
5
  SHA512:
6
- metadata.gz: df7304f62064c6722b1b02c6b918ed1388b92d784509c10597269adf6d2b6c50dd478af477077172a1af95a34e4f4bbe2d1735e3533963f8b61346e9474088b4
7
- data.tar.gz: 8aa0a62a0c22561f2f04ed8b630f926bd4cd6bde4d3d22234c5c4efc618b659c7b0ad19ab0c1ba1fe8a17b7e45d9eabc9b6d684f0de06fa8010a5d4fb36145d2
6
+ metadata.gz: d21d1ba6ab3489312a6212a6af7d3ce95f156d5c86e4855ac922b207ade905722fb2fe07669d25a5b9980e932a8f434a28d0fb17cd1d7d355b36387cca43401c
7
+ data.tar.gz: 63330fdd41d6364f9068869ab1c2c360f93f9fc8bd827d5566928c3c191eee2e8af55f6b5d693a201740c4f65052d175d0eafac5994b076e5f309d42d7a17994
data/CHANGELOG.md ADDED
@@ -0,0 +1,19 @@
1
+ * **0.2 (2016-05-18)**: Configuration moved to YAML-file. SSH-Keys optional. Config-templates overwritable locally.
2
+ * **0.18.4 (2016-03-22)**: Added mandatory task to install `ssh_key`s
3
+ * **0.18.2 (2016-03-08)**: Added basic DDoS and flooding-proof via nginx `req_limit` and `fail2ban`
4
+ * **0.18.1 (2016-03-01)**: Added support for memcached
5
+ * **0.18 (2016-02-25)**: Added support for capistrano 3.4, Ask before overwriting existing config-files
6
+ * **2016-02-19**: Made selection of a deployed branch possible
7
+ * **2016-02-17**: Added support for puma as application server
8
+ * **2015-10-12**: Support additional linked-directories
9
+ * **2015-08-27**: Small fix for `nginx`-config regarding gzipping of svgs
10
+ * **2015-08-14**: Important small fix for `nginx`-config regarding ssl
11
+ * **2015-08-07**: Small fix for `rvm`-install
12
+ * **2015-08-06**: Support for optional `sidekiq`
13
+ * **2015-06-23**: Support for optional `elasticsearch`
14
+ * **2015-06-23**: Support for optional `whenever`
15
+ * **2015-06-23**: Support for optional `imagemagick`
16
+ * **2015-06-23**: Support creation of working `ubuntu` user. Error out if another user than `ubuntu` is used.
17
+ * **2015-06-22**: Support for choosing your Ruby-version when creating the `Capfile`. Suggestions come from `.ruby-version` and `Gemfile`.
18
+ * **2015-04-29**: Load custom rake tasks from lib/capistrano/tasks directory.
19
+ You need to run the generator ```rake deploy_mate:install``` again or add ```Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }``` to your Capfile.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- deploy_mate (0.17.5)
4
+ deploy_mate (0.18.4)
5
5
  capistrano (~> 3.0)
6
6
  capistrano-bundler
7
7
  capistrano-rails
data/README.md CHANGED
@@ -5,11 +5,11 @@
5
5
  This little gem can be added to your ruby-projects in order to **set up a working ruby-server** and **deploy** to it.
6
6
 
7
7
  The resulting server will work with this setup:
8
- - NGINX Webserver (http://nginx.org/)
9
- - Unicorn Rack App Server (http://unicorn.bogomips.org/) / Puma Rack App Server (http://puma.io/)
10
- - Bluepill Process Monitoring (https://github.com/bluepill-rb/bluepill)
11
- - RVM as user-install (http://rvm.io)
12
- - [Optional] ImageMagick (http://www.imagemagick.org)
8
+ - [NGINX](http://nginx.org/) Webserver
9
+ - [Unicorn](http://unicorn.bogomips.org/) Rack App Server / [Puma](http://puma.io/) Rack App Server
10
+ - [Bluepill](https://github.com/bluepill-rb/bluepill) Process Monitoring
11
+ - [RVM](http://rvm.io) as user-install
12
+ - [Optional] [ImageMagick](http://www.imagemagick.org)
13
13
 
14
14
  Other stuff taken care of:
15
15
  - Logration
@@ -28,75 +28,50 @@ It uses the following Capistrano-roles to divide the installed components:
28
28
  - **search**: [OPTIONAL] Machines with this role run ElasticSearch
29
29
  - **cronjobs**: [OPTIONAL] For environments where `whenever` should manage/run cronjobs
30
30
 
31
- ## Changelog
32
- * **0.18.4 (2016-03-22)**: Added mandatory task to install `ssh_key`s
33
- * **0.18.2 (2016-03-08)**: Added basic DDoS and flooding-proof via nginx `req_limit` and `fail2ban`
34
- * **0.18.1 (2016-03-01)**: Added support for memcached
35
- * **0.18 (2016-02-25)**: Added support for capistrano 3.4, Ask before overwriting existing config-files
36
- * **2016-02-19**: Made selection of a deployed branch possible
37
- * **2016-02-17**: Added support for puma as application server
38
- * **2015-10-12**: Support additional linked-directories
39
- * **2015-08-27**: Small fix for `nginx`-config regarding gzipping of svgs
40
- * **2015-08-14**: Important small fix for `nginx`-config regarding ssl
41
- * **2015-08-07**: Small fix for `rvm`-install
42
- * **2015-08-06**: Support for optional `sidekiq`
43
- * **2015-06-23**: Support for optional `elasticsearch`
44
- * **2015-06-23**: Support for optional `whenever`
45
- * **2015-06-23**: Support for optional `imagemagick`
46
- * **2015-06-23**: Support creation of working `ubuntu` user. Error out if another user than `ubuntu` is used.
47
- * **2015-06-22**: Support for choosing your Ruby-version when creating the `Capfile`. Suggestions come from `.ruby-version` and `Gemfile`.
48
- * **2015-04-29**: Load custom rake tasks from lib/capistrano/tasks directory.
49
- You need to run the generator ```rake deploy_mate:install``` again or add ```Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }``` to your Capfile.
50
-
51
31
  ## Installation
52
- Add this to your project's `Gemfile`:
53
-
32
+ * Add the gem to your Gemfile (`gem 'deploy_mate'`) and run `bundle install`.
33
+ * Spawn yourself a basic **Ubuntu 14** at the provider of your choice.
34
+ * Create a working SSH-configuration for that server and try it out using `ssh <your-server-name>`.
35
+
36
+ ## Generate the Capistrano files
37
+ * Generate the configuration file: `bundle exec rake deploy_mate:default_config`
38
+ * Edit the configuration file: `open config/deploy_mate.yml`
39
+ * Generate the Capistrano files out of the config: `bundle exec rake deploy_mate:install`
40
+
41
+ **NOTE** for non-rails applications:
42
+ Since rails supports auto-loading rake tasks, any non-rails application must load the deploy mate rake tasks manually.
43
+ At **the end** of the your project's `Rakefile`:
54
44
  ```
55
- gem 'deploy_mate'
45
+ load 'deploy_mate/tasks.rake'
56
46
  ```
57
- and run `bundle install`.
47
+ When done: **Remove** `load 'deploy_mate/tasks.rake'` from your `Rakefile`. It is not needed anymore and will otherwise only cause problems.
58
48
 
59
- After installing the gem you need to generate the files needed to be able to deploy with **capistrano**.
49
+ ## Using deploy mate
60
50
 
61
- Add this at **the end** of your project's `Rakefile`:
62
- ```
63
- load 'deploy_mate/tasks.rake'
51
+ ### Initialize needed server packages
64
52
  ```
65
- then run
53
+ bundle exec cap <your-stage> machine:init
66
54
  ```
67
- rake deploy_mate:install
68
- ````
69
-
70
- Follow the instructions.
71
-
72
- This will create the following files for you:
73
55
 
56
+ ### Copy needed templates
74
57
  ```
75
- Capfile
76
- config/deploy.rb
77
- config/deploy/<your-stage>.rb
58
+ bundle exec cap <your-stage> machine:setup
78
59
  ```
79
- When done: **Remove** `load 'deploy_mate/tasks.rake'` from your `Rakefile`. It is not needed anymore and will otherwise only cause problems.
80
60
 
81
- ## Updating the gem
82
- Should you need to update your `deploy_mate`-version (e.g. because somebody fixed a bug in the gem), run:
61
+ ### Deploy the application
83
62
  ```
84
- bundle update deploy_mate
63
+ bundle exec cap <your-stage> deploy
85
64
  ```
86
- This will bump you up to the latest repo-version.
87
-
88
- ## Setting up a server
89
- 1. Spawn yourself a basic **Ubuntu 14** at the provider of your choice.
90
- 2. Create a working SSH-configuration for that server and try it our using `ssh <your-server-name>`
91
- 3. Run `cap <your-stage> machine:init` to install the needed packages.
92
- 4. Run `cap <your-stage> machine:setup` the setup all needed configuration-files on the server
93
- 5. Run `cap <your-stage> deploy branch=optional_branch` and be done.
94
65
 
95
- ## Reinstalling SSH-Keys
96
- If you need to redeploy SSH Keys to your server (e.g. somebody leaves your team), run:
66
+ ### Reinstalling SSH-Keys
67
+ If you need to redeploy SSH Keys to your server (e.g. somebody leaves your team),you can
68
+ always come back to your configuration file at `config/deploy_mate.yml`, change the
69
+ values and generate the Capistrano files again with `bundle exec rake deploy_mate:install`.
70
+ To setup just the ssh keys run:
97
71
 
98
72
  ```
99
73
  bundle exec cap <your-stage> machine:install:ssh_keys
100
74
  ```
101
75
 
102
- It will pull the SSH Keys from the location configured in your `deploy.rb`. You can also change it there.
76
+ ### Overwriting Templates
77
+ You can overwrite the templates used to setup the server. Just place the desired template in your project under `lib/capistrano/configs` and rerun the setup task. All existing templates can be found in this repo under [lib/capistrano/configs](https://github.com/hanseventures/deploy-mate/tree/master/lib/capistrano/configs).
data/deploy-mate.gemspec CHANGED
@@ -1,9 +1,9 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "deploy_mate"
3
- s.version = "0.18.4"
3
+ s.version = "0.20"
4
4
 
5
5
  s.authors = ["Tim Adler", "Marcus Geißler", "Johannes Strampe"]
6
- s.date = %q{2016-03-22}
6
+ s.date = %q{2016-05-18}
7
7
  s.description = %q{This is how we deploy around here.}
8
8
  s.summary = s.description
9
9
  s.email = %q{development (at) hanseventures (dot) com}
@@ -19,5 +19,4 @@ Gem::Specification.new do |s|
19
19
  s.add_dependency 'capistrano-bundler'
20
20
  s.add_dependency 'capistrano-rails'
21
21
  s.add_dependency 'rake'
22
-
23
22
  end
@@ -1,6 +1,15 @@
1
1
  # puma configuration
2
2
 
3
3
  shared_path = "<%= shared_path %>"
4
+ environment_name = "<%= fetch(:environment) %>"
5
+
6
+ begin
7
+ require 'dotenv'
8
+ dotenv_path = '<%= fetch(:dotenv_path, shared_path.join(".env.#{fetch(:environment)}")) %>'
9
+ Dotenv.load(dotenv_path)
10
+ rescue LoadError
11
+ puts "Dotenv not found, skipping load of env vars..."
12
+ end
4
13
 
5
14
  # Puma can serve each request in a thread from an internal thread pool.
6
15
  # The `threads` method setting takes two numbers a minimum and maximum.
@@ -8,12 +17,12 @@ shared_path = "<%= shared_path %>"
8
17
  # the maximum value specified for Puma. Default is set to 5 threads for minimum
9
18
  # and maximum, this matches the default thread size of Active Record.
10
19
  #
11
- threads_count = <%= fetch(:puma_threads) %>
20
+ threads_count = ENV.fetch("PUMA_THREADS", <%= fetch(:puma_threads) %>)
12
21
  threads threads_count, threads_count
13
22
 
14
23
  # Specifies the `environment` that Puma will run in.
15
24
  #
16
- environment "<%= fetch(:environment) %>"
25
+ environment environment_name
17
26
 
18
27
  # Specifies the number of `workers` to boot in clustered mode.
19
28
  # Workers are forked webserver processes. If using threads and workers together
@@ -21,7 +30,7 @@ environment "<%= fetch(:environment) %>"
21
30
  # Workers do not work on JRuby or Windows (both of which do not support
22
31
  # processes).
23
32
  #
24
- workers <%= fetch(:puma_workers) %>
33
+ workers ENV.fetch("PUMA_WORKERS", <%= fetch(:puma_workers) %>)
25
34
 
26
35
  # Use the `preload_app!` method when specifying a `workers` number.
27
36
  # This directive tells Puma to first boot the application and load code
@@ -2,7 +2,9 @@
2
2
  # This file is loaded before the tasks
3
3
 
4
4
  def template(from, to)
5
- erb = File.read(File.expand_path("../configs/#{from}", __FILE__))
5
+ path = File.expand_path("lib/capistrano/configs/#{from}", ENV['PWD'])
6
+ path = File.expand_path("../configs/#{from}", __FILE__) unless File.exists?(path)
7
+ erb = File.read(path)
6
8
  compiled = ERB.new(erb).result(binding)
7
9
  io = StringIO.new(compiled)
8
10
  upload! io, to
@@ -17,4 +19,4 @@ def execute_script(name, params = "")
17
19
  execute "chmod 755 #{name}"
18
20
  execute "./#{name} #{params}"
19
21
  execute "rm #{name}"
20
- end
22
+ end
@@ -4,17 +4,4 @@ module Shell
4
4
  test("[ -f #{file} ]")
5
5
  end
6
6
 
7
- def overwrite_file?(file)
8
- ask(:answer, "File #{file} already exists. Overwrite it? (y/N)")
9
- fetch(:answer).downcase == "y"
10
- end
11
-
12
- def file_exists_and_overwrite?(file)
13
- file_exists?(file) && overwrite_file?(file)
14
- end
15
-
16
- def file_new_or_overwrite?(file)
17
- !file_exists?(file) || overwrite_file?(file)
18
- end
19
-
20
7
  end
@@ -5,9 +5,7 @@ namespace :bluepill do
5
5
  task :setup do
6
6
  on roles(:app) do
7
7
  execute "mkdir -p #{shared_path}/config"
8
- if file_new_or_overwrite?("#{shared_path}/config/#{fetch(:application)}.pill")
9
- template "application.pill.erb", "#{shared_path}/config/#{fetch(:application)}.pill"
10
- end
8
+ template "application.pill.erb", "#{shared_path}/config/#{fetch(:application)}.pill"
11
9
  end
12
10
  end
13
11
 
@@ -4,14 +4,10 @@ namespace :fail2ban do
4
4
  desc "Installs the fail2ban configs"
5
5
  task :setup do
6
6
  on roles(:web) do
7
- if file_new_or_overwrite?("/etc/fail2ban/jail.conf")
8
- template "fail2ban-nginx-request-limit-jail.conf.erb", "/tmp/fail2ban_jail"
9
- sudo "mv /tmp/fail2ban_jail /etc/fail2ban/jail.conf"
10
- end
11
- if file_new_or_overwrite?("/etc/fail2ban/filter.d/nginx-req-limit.conf")
12
- template "fail2ban-nginx-request-limit-jail.conf.erb", "/tmp/fail2ban_req_filter"
13
- sudo "mv /tmp/fail2ban_req_filter /etc/fail2ban/filter.d/nginx-req-limit.conf"
14
- end
7
+ template "fail2ban-nginx-request-limit-jail.conf.erb", "/tmp/fail2ban_jail"
8
+ sudo "mv /tmp/fail2ban_jail /etc/fail2ban/jail.conf"
9
+ template "fail2ban-nginx-request-limit-jail.conf.erb", "/tmp/fail2ban_req_filter"
10
+ sudo "mv /tmp/fail2ban_req_filter /etc/fail2ban/filter.d/nginx-req-limit.conf"
15
11
  end
16
12
  end
17
13
 
@@ -4,10 +4,8 @@ namespace :logrotate do
4
4
  desc "Install the logrotate config"
5
5
  task :setup do
6
6
  on roles(:app) do
7
- if file_new_or_overwrite?("/etc/logrotate.d/#{fetch(:application)}")
8
- template "logrotate.erb", "/tmp/logrotate-#{fetch(:application)}"
9
- sudo "mv /tmp/logrotate-#{fetch(:application)} /etc/logrotate.d/#{fetch(:application)}"
10
- end
7
+ template "logrotate.erb", "/tmp/logrotate-#{fetch(:application)}"
8
+ sudo "mv /tmp/logrotate-#{fetch(:application)} /etc/logrotate.d/#{fetch(:application)}"
11
9
  sudo "chown root:root /etc/logrotate.d/#{fetch(:application)}"
12
10
  end
13
11
  end
@@ -190,6 +190,8 @@ namespace :machine do
190
190
  on roles(:app) do
191
191
  file_patterns = fetch(:ssh_file_names)
192
192
 
193
+ next puts("Skip SSH key installation") if file_patterns == []
194
+
193
195
  puts "Installing SSH Keys from #{file_patterns.join(',')}..."
194
196
 
195
197
  keys = []
@@ -6,15 +6,11 @@ namespace :nginx do
6
6
  desc "Installs the nginx configs"
7
7
  task :setup do
8
8
  on roles(:web) do
9
- if file_new_or_overwrite?("/etc/nginx/nginx.conf")
10
- template "nginx_base.conf.erb", "/tmp/nginx_conf"
11
- sudo "mv /tmp/nginx_conf /etc/nginx/nginx.conf"
12
- end
9
+ template "nginx_base.conf.erb", "/tmp/nginx_conf"
10
+ sudo "mv /tmp/nginx_conf /etc/nginx/nginx.conf"
13
11
 
14
- if file_new_or_overwrite?("/etc/nginx/sites-available/#{fetch(:application)}.conf")
15
- template "nginx_app.conf.erb", "/tmp/#{fetch(:application)}_conf"
16
- sudo "mv /tmp/#{fetch(:application)}_conf /etc/nginx/sites-available/#{fetch(:application)}.conf"
17
- end
12
+ template "nginx_app.conf.erb", "/tmp/#{fetch(:application)}_conf"
13
+ sudo "mv /tmp/#{fetch(:application)}_conf /etc/nginx/sites-available/#{fetch(:application)}.conf"
18
14
 
19
15
  if file_exists? "/etc/nginx/sites-enabled/default"
20
16
  sudo "rm /etc/nginx/sites-enabled/default"
@@ -11,9 +11,7 @@ namespace :puma do
11
11
  task :setup do
12
12
  on roles(:app) do
13
13
  execute "mkdir -p #{shared_path}/config"
14
- if file_new_or_overwrite?("#{shared_path}/config/puma.rb")
15
- template "puma.rb.erb", "#{shared_path}/config/puma.rb"
16
- end
14
+ template "puma.rb.erb", "#{shared_path}/config/puma.rb"
17
15
  end
18
16
  end
19
17
 
@@ -10,9 +10,7 @@ namespace :unicorn do
10
10
  task :setup do
11
11
  on roles(:app) do
12
12
  execute "mkdir -p #{shared_path}/config"
13
- if file_new_or_overwrite?("#{shared_path}/config/unicorn.rb")
14
- template "unicorn.rb.erb", "#{shared_path}/config/unicorn.rb"
15
- end
13
+ template "unicorn.rb.erb", "#{shared_path}/config/unicorn.rb"
16
14
  end
17
15
  end
18
16
 
@@ -6,20 +6,16 @@ namespace :upstart do
6
6
  desc "Install the upstart config"
7
7
  task :setup do
8
8
  on roles(:app) do
9
- if file_new_or_overwrite?("/etc/init/bluepill.conf")
10
- template "upstart.conf.erb", "/tmp/bluepill.conf"
11
- sudo "mv /tmp/bluepill.conf /etc/init/"
12
- end
9
+ template "upstart.conf.erb", "/tmp/bluepill.conf"
10
+ sudo "mv /tmp/bluepill.conf /etc/init/"
13
11
  sudo "chown root:root /etc/init/bluepill.conf"
14
12
  end
15
13
  end
16
14
 
17
15
  task :start do
18
16
  on roles(:app) do
19
- if file_new_or_overwrite?("/etc/init/bluepill.conf")
20
- template "upstart.conf.erb", "/tmp/bluepill.conf"
21
- sudo "mv /tmp/bluepill.conf /etc/init/"
22
- end
17
+ template "upstart.conf.erb", "/tmp/bluepill.conf"
18
+ sudo "mv /tmp/bluepill.conf /etc/init/"
23
19
  sudo "chown root:root /etc/init/bluepill.conf"
24
20
  end
25
21
  end
@@ -1,67 +1,48 @@
1
- require 'readline'
2
-
3
1
  namespace :deploy_mate do
2
+ desc 'copy the default configuration file to config/deploy_mate.yml'
3
+ task :default_config do
4
+ @app_name = guess_app_name
5
+ @ruby_version = guess_ruby_version
6
+ @rails = to_h(rails?)
7
+ @imagemagick = to_h(imagemagick?)
8
+ @sidekiq = to_h(sidekiq?)
9
+ @memcached = to_h(memcached?)
10
+
11
+ puts "Creating default template:\n\n"
12
+ puts "\t" + config_template('deploy_mate.yml.erb', 'config/deploy_mate.yml')
13
+ puts "\nConfigure it and then run:\n\n\tbundle exec rake deploy_mate:install\n\n"
14
+ end
4
15
 
5
- desc 'Installs the needed capistrano files to deploy with the mate.'
6
- task :install do |t,args|
7
- puts "I'm your DEPLOY_MATE."
8
- puts "We will set up your deployment now."
9
-
10
- @app_name = ask("[01/16] App-Name (for nginx, servers, etc.)", guess_app_name)
11
- @stage_name = ask("[02/16] Give the first stage a name", "prestage")
12
- @ssh_name = ask("[03/16] SSH-Hostname for the server", "#{@app_name}-#{@stage_name}")
13
- @ssh_file_names = ask("[04/16] SSH Keys to be installed", "~/.ssh/*.pub")
14
- @ruby_version = ask("[05/16] Ruby-Version (the RVM-way, e.g. ruby-2.2.0)", guess_ruby_version)
15
- @db_engine = ask_until("[06/16] What db are you using?", %w( postgresql mysql ), "mysql")
16
- @app_server = ask_until("[07/16] What app server do you want to use?", %w( unicorn puma ), "unicorn")
17
- @repo_url = ask("[08/16] Url-Location of git-repo", "git@github.com:hanseventures/#{@app_name}.git")
18
- @is_rails = yes_or_no?("[09/16] Is this a RAILS project ?", (rails_present? ? "yes" : "no"))
19
- @needs_imagemagick = yes_or_no?("[10/16] Does this project need ImageMagick ?", (needs_imagemagick? ? "yes" : "no"))
20
- @uses_sidekiq = yes_or_no?("[11/16] Does this project use Sidekiq ?", (uses_sidekiq? ? "yes" : "no"))
21
- @branch_name = ask("[12/16] Branch to deploy '#{@stage_name}' from", "dev")
22
- @host_name = ask("[13/16] Web-URL for '#{@stage_name}'", "#{@stage_name}.#{@app_name}")
23
- @environment = ask("[14/16] #{@stage_name}'s environment (RACK_ENV/RAILS_ENV)", "#{@stage_name}")
24
- @needs_elasticsearch = yes_or_no?("[15/16] Do you need ElasticSearch on this machine ?", "no")
25
- @needs_memcached = yes_or_no?("[16/16] Do you need Memcached on this machine ?", (needs_memcached? ? "yes" : "no"))
26
-
27
- puts "Aye!"
28
- puts "Worrrrking..."
29
-
30
- config_template("Capfile.erb", "Capfile")
31
- sleep 1
32
- config_template("deploy.rb.erb", "config/deploy.rb")
33
- sleep 1
16
+ task :install do
17
+ @config = YAML.load_file(File.expand_path('config/deploy_mate.yml', ENV['PWD']))
18
+ puts "Creating capistrano deployment files:\n"
34
19
  FileUtils.mkdir_p("config/deploy") unless File.exists?("config/deploy")
35
- config_template("deploy/stage.rb.erb", "config/deploy/#{@stage_name}.rb")
36
- sleep 1
37
-
38
- puts "You can activate OPTIONAL components e.g. 'whenever' in deploy.rb/Capfile."
39
-
40
- puts "Arr, be dun working!"
20
+ puts config_template("Capfile.erb", "Capfile")
21
+ puts config_template("deploy.rb.erb", "config/deploy.rb")
22
+ puts config_template("deploy/stage.rb.erb", "config/deploy/#{@config['stage_name']}.rb")
41
23
  end
42
-
43
24
  end
44
25
 
45
26
  def config_template(from, to)
46
27
  erb = File.read(File.expand_path("../templates/#{from}", __FILE__))
47
28
  compiled = ERB.new(erb).result(binding)
48
29
  File.open(to, "wb") { |f| f.write(compiled) }
49
- puts "'#{to}'"
30
+ to
50
31
  end
51
32
 
52
- def uses_sidekiq?
33
+ def sidekiq?
53
34
  defined? Sidekiq
54
35
  end
55
36
 
56
- def needs_imagemagick?
37
+ def imagemagick?
57
38
  defined? RMagick || defined? MiniMagick
58
39
  end
59
40
 
60
- def needs_memcached?
41
+ def memcached?
61
42
  defined? Dalli
62
43
  end
63
44
 
64
- def rails_present?
45
+ def rails?
65
46
  defined? Rails
66
47
  end
67
48
 
@@ -85,32 +66,10 @@ def guess_ruby_version
85
66
  ruby_version
86
67
  end
87
68
 
88
- def yes_or_no?(prompt, default = nil)
89
- answer = "undefined"
90
- while(!["yes", "no"].include?(answer))
91
- answer = ask("#{prompt} [yes/no]:", (default == "yes" ? "yes" : "no"))
92
- end
93
- (answer == "yes")
94
- end
95
-
96
- def ask_until(prompt, answers, default)
97
- begin
98
- answer = ask("#{prompt} (#{answers.join(', ')})", default).downcase
99
- end until answers.include? answer
100
- answer
101
- end
102
-
103
- def ask(prompt, default = nil)
104
- if default
105
- Readline.pre_input_hook = -> {
106
- Readline.insert_text(default)
107
- Readline.redisplay
108
- }
109
- end
110
- data = Readline.readline("#{prompt}: ")
111
- return data.chomp
69
+ def to_h(value)
70
+ value ? "yes" : "no"
112
71
  end
113
72
 
114
73
  def cat_file(filename)
115
- File.open(filename, 'rb') { |f| f.read } if File.exist?(filename)
74
+ File.open(filename, "rb") { |f| f.read } if File.exist?(filename)
116
75
  end
@@ -1,5 +1,5 @@
1
1
  require 'capistrano/deploy_mate_capfile'
2
- <% if @is_rails %>
2
+ <% if @config['rails'] %>
3
3
  require 'capistrano/rails/assets'
4
4
  require 'capistrano/rails/migrations'
5
5
  <% end %>
@@ -9,4 +9,4 @@ Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
9
9
  # Uncomment, if needed
10
10
 
11
11
  # require "whenever/capistrano"
12
- # before 'deploy:restart', 'deploy:migrate', 'whenever:update_crontab'
12
+ # before 'deploy:restart', 'deploy:migrate', 'whenever:update_crontab'
@@ -1,7 +1,7 @@
1
- server "<%= @ssh_name %>", roles: [:app, :db, :web<% if @needs_elasticsearch %>, :search<% end %>], :primary => true
1
+ server "<%= @config['ssh_name'] %>", roles: [:app, :db, :web<% if @config['elasticsearch'] %>, :search<% end %>], :primary => true
2
2
 
3
3
  set :unicorn_workers, "2"
4
- set :nginx_server_name, "<%= @host_name %>"
4
+ set :nginx_server_name, "<%= @config['host_name'] %>"
5
5
 
6
- set :environment, "<%= @environment %>"
7
- set :branch, ENV.fetch("branch", "<%= @branch_name %>")
6
+ set :environment, "<%= @config['environment'] %>"
7
+ set :branch, ENV.fetch("branch", "<%= @config['branch_name'] %>")
@@ -1,22 +1,22 @@
1
1
  # NOTE: copy this file to /config/deploy.rb
2
- set :application, '<%= @app_name %>'
2
+ set :application, '<%= @config['app_name'] %>'
3
3
 
4
4
  require "capistrano/deploy_mate_defaults"
5
5
 
6
- set :rvm_ruby_version, '<%= @ruby_version %>'
6
+ set :rvm_ruby_version, '<%= @config['ruby_version'] %>'
7
7
 
8
8
  # Set app specific vars
9
- set :stages, %w(<%= @stage_name %>)
10
- set :default_stage, '<%= @stage_name %>'
11
- set :repo_url, '<%= @repo_url %>'
12
- set :db_engine, '<%= @db_engine %>'
13
- set :app_server, '<%= @app_server %>'
9
+ set :stages, %w(<%= @config['stage_name'] %>)
10
+ set :default_stage, '<%= @config['stage_name'] %>'
11
+ set :repo_url, '<%= @config['repo_url'] %>'
12
+ set :db_engine, '<%= @config['db_engine'] %>'
13
+ set :app_server, '<%= @config['app_server'] %>'
14
14
 
15
- set :imagemagick, <%= @needs_imagemagick %>
16
- set :memcached, <%= @needs_memcached %>
17
- set :sidekiq, <%= @uses_sidekiq %>
15
+ set :imagemagick, <%= @config['imagemagick'] %>
16
+ set :memcached, <%= @config['memcached'] %>
17
+ set :sidekiq, <%= @config['sidekiq'] %>
18
18
 
19
- set :ssh_file_names, ['<%= @ssh_file_names %>']
19
+ set :ssh_file_names, [<%= @config['ssh_file_names'].to_a.map { |file| "'#{file}'" }.join(', ') %>]
20
20
 
21
21
  # Optionals
22
22
  # Uncomment, if needed
@@ -0,0 +1,79 @@
1
+ # This file represents your application deployment configuration and
2
+ # will be used to generate the capistrano deployment and server setup.
3
+ # Please go through this file and when you are ready execute:
4
+ #
5
+ # bundle exec rake deploy_mate:install
6
+
7
+ ---
8
+
9
+ # Name of the application, which is usually the same as the
10
+ # repository name.
11
+ app_name: <%= @app_name %>
12
+
13
+ # The url of your GIT repository.
14
+ repo_url: "git@github.com:your-github-name/<%= @app_name %>.git"
15
+
16
+ # For which stage should the server-setup/deployment be generated. It is
17
+ # recommended to start with a prestage system and afterwards configure
18
+ # the production system when it is ready.
19
+ stage_name: prestage
20
+
21
+ # Under which rails environment will the application run.
22
+ environment: prestage
23
+
24
+ # Which GIT branch should be deployed to the defined server by default?
25
+ # You can overrule this value by providing a branch on the deployment command:
26
+ #
27
+ # bundle exec cap prestage deploy branch=feature/xyz
28
+ branch_name: dev
29
+
30
+ # Which is the ssh shortcut to connect to the server. It should be configured
31
+ # in your ~/.ssh/config. You should be able to connect to the server using:
32
+ #
33
+ # ssh specified_ssh_name
34
+ #
35
+ ssh_name: prestage-server
36
+
37
+ # Since you are able to connect to the server with the specified ssh shortcurt,
38
+ # usually more persons should be able to access it. You can specify a list of
39
+ # public ssh keys which will be copied to the ~/.ssh/authorized_keys file on the
40
+ # server. If the list is empty, the current key setting will be left untouched on
41
+ # the server.
42
+ ssh_file_names:
43
+ - "~/.ssh/*.pub"
44
+
45
+ # Under which URL should your server be available? An IP address does the job
46
+ # too
47
+ host_name: example.com
48
+
49
+ # The ruby version, that will be installed and used on the server. It is used
50
+ # by RVM and must have a compatible syntax like '2.3.0' or 'ruby-2.3.0'.
51
+ ruby_version: <%= @ruby_version %>
52
+
53
+ # Currently there are two database engines supported: 'postgresql' and 'mysql'
54
+ db_engine: postgresql
55
+
56
+ # Currently there are two appservers supported: 'unicorn' and 'puma'.
57
+ # Remember to add the chosen appserver to your Gemfile if you are not
58
+ # already using it locally.
59
+ app_server: unicorn
60
+
61
+ # Are your running a rails application?
62
+ # Possible values 'yes' or 'no'.
63
+ rails: <%= @rails %>
64
+
65
+ # Are you depending on imagemagick for image manipulation (E.g. paperclip gem)?
66
+ # Possible values 'yes' or 'no'.
67
+ imagemagick: <%= @imagemagick %>
68
+
69
+ # Are you depending on sidekiq (E.g. as active job backend)?
70
+ # Possible values 'yes' or 'no'.
71
+ sidekiq: <%= @sidekiq %>
72
+
73
+ # Are you depending on elastic search?
74
+ # Possible values 'yes' or 'no'.
75
+ elasticsearch: no
76
+
77
+ # Are you depending on memcached for example as a cache store?
78
+ # Possible values 'yes' or 'no'.
79
+ memcached: <%= @memcached %>
@@ -0,0 +1,9 @@
1
+ if defined?(Rails)
2
+ module DeployMate
3
+ class Railtie < Rails::Railtie
4
+ rake_tasks do
5
+ load 'deploy_mate/tasks.rake'
6
+ end
7
+ end
8
+ end
9
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deploy_mate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.4
4
+ version: '0.20'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Adler
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2016-03-22 00:00:00.000000000 Z
13
+ date: 2016-05-18 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: capistrano
@@ -78,6 +78,7 @@ files:
78
78
  - ".rubocop.yml"
79
79
  - ".ruby-gemset"
80
80
  - ".ruby-version"
81
+ - CHANGELOG.md
81
82
  - Gemfile
82
83
  - Gemfile.lock
83
84
  - README.md
@@ -116,10 +117,12 @@ files:
116
117
  - lib/capistrano/tasks/seeds.rake
117
118
  - lib/capistrano/tasks/unicorn.rake
118
119
  - lib/capistrano/tasks/upstart.rake
120
+ - lib/deploy_mate.rb
119
121
  - lib/deploy_mate/tasks.rake
120
122
  - lib/deploy_mate/templates/Capfile.erb
121
123
  - lib/deploy_mate/templates/deploy.rb.erb
122
124
  - lib/deploy_mate/templates/deploy/stage.rb.erb
125
+ - lib/deploy_mate/templates/deploy_mate.yml.erb
123
126
  homepage: https://github.com/hanseventures/deploy-mate
124
127
  licenses:
125
128
  - MIT