capistrano-olympus 0.0.2 → 0.0.3

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: fb439b9ca9c5a43c7902ab97d60be5f54b651a91
4
- data.tar.gz: e291eb32dffb9e70b46fe6d260cf3dfec5dce972
3
+ metadata.gz: eb77d33d25f89d00b66cff44b82ac46b1b5e5f62
4
+ data.tar.gz: 362c43c0f3d33e02f7a206221e3db61f604d4854
5
5
  SHA512:
6
- metadata.gz: 6ee240b208ff034b12910ccd38d3782c06f539e5584c106d55e0d055723ac60f6fbf667a9a79dac0eecc82ded361d023a3da1a48423e669543bda1d2e83182a9
7
- data.tar.gz: cdc1aeb9370e5e57ecd0889d3c79c936c776e3f734d4b383630f71ed9d08eb32672525be8239c69830dc69a8fe8673ae17c5f8d45c433f88f30f557cb97af99d
6
+ metadata.gz: 4657499ae72db3bae993b53598963b5128ae8c083477ecf895b79c98e5edd334bcd97c68375603716444bc0f0b4939d6ee9ca2964b8084d3a2330e84efbb7276
7
+ data.tar.gz: 742dbc65a6b09e18fc6afa3728dbc02450f127d623495a9e2618b5bdf5467d3bf64c00927bc8c5e746fa8bd6d7c5541c4c8b88550365dd47e1d1d92b79ac5ac9
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## v0.0.3 (April 01, 2016)
2
+ Fix path to olympus.rb file.
3
+
1
4
  ## v0.0.2 (April 01, 2016)
2
5
  Remove common.php upload file, make salt.php upload or auto-generated file. Uses now colorize gem.
3
6
  This is not a joke! :)
data/README.md CHANGED
@@ -28,7 +28,7 @@ Require `capistrano-olympus` in your gem file:
28
28
  ```
29
29
  # Gemfile
30
30
  gem 'capistrano', '~> 3.4'
31
- gem 'capistrano-olympus', '~> 0.0.2'
31
+ gem 'capistrano-olympus', '~> 0.0.3'
32
32
  gem 'colorize', '~> 0.7.7'
33
33
  ```
34
34
 
@@ -49,46 +49,13 @@ All default settings are defined in the `lib/capistrano/vars/defaults.rb` file.
49
49
  If you want to override any setting, just set it on your `app/deploy/config.rb` file.
50
50
 
51
51
  ```ruby
52
- # Config valid only for current version of Capistrano
53
- lock '3.4.0'
54
-
55
- # ~~~~
56
-
57
52
  # Setup Capistrano
58
53
  set :log_level, fetch(:log_level, :debug)
59
54
  set :keep_releases, fetch(:keep_releases, 3)
60
55
 
61
- # Setup Project ~ Update these settings
56
+ # Setup Project
62
57
  set :application, fetch(:application, 'olympus-capified')
63
58
  set :localurl, fetch(:localurl, 'http://www.domain.tld')
64
-
65
- # Setup Git
66
- set :repo_url, 'git@github.com:crewstyle/Olympus.git'
67
- set :scm, :git
68
- set :git_enable_submodules, true
69
-
70
- # Setup SSH
71
- set :copy_exclude, ['.git', '.DS_Store', '.gitignore', '.gitmodules']
72
- set :use_sudo, false
73
- set :ssh_options, {
74
- forward_agent: true
75
- }
76
-
77
- # ~~~~
78
-
79
- # Setup Composer
80
- set :composer_install_flags, '--no-dev --no-interaction --quiet --optimize-autoloader'
81
- set :composer_roles, :all
82
- set :composer_working_dir, -> { fetch(:release_path) }
83
- set :composer_dump_autoload_flags, '--optimize'
84
- set :composer_download_url, 'https://getcomposer.org/installer'
85
-
86
- # ~~~~
87
-
88
- # Setup Symlinks
89
- set :linked_files, ["app/config/env.php", "app/config/salt.php", "web/.htaccess", "web/robots.txt"]
90
- set :linked_dirs, ["web/statics/languages", "web/statics/plugins", "web/statics/uploads"]
91
-
92
59
  ```
93
60
 
94
61
  ---
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = 'capistrano-olympus'
7
- gem.version = '0.0.2'
7
+ gem.version = '0.0.3'
8
8
  gem.date = '2016-04-01'
9
9
  gem.authors = ['Achraf Chouk']
10
10
  gem.email = ['achrafchouk@gmail.com']
@@ -7,7 +7,7 @@ lock '3.4.0'
7
7
  set :log_level, fetch(:log_level, :debug)
8
8
  set :keep_releases, fetch(:keep_releases, 3)
9
9
 
10
- # Setup Project ~ Update these settings
10
+ # Setup Project
11
11
  set :application, fetch(:application, 'olympus-capified')
12
12
  set :localurl, fetch(:localurl, 'http://www.domain.tld')
13
13
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-olympus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Achraf Chouk
@@ -79,7 +79,7 @@ files:
79
79
  - README.md
80
80
  - capistrano-olympus.gemspec
81
81
  - lib/capistrano-olympus.rb
82
- - lib/capistrano/capistrano-olympus.rb
82
+ - lib/capistrano/olympus.rb
83
83
  - lib/capistrano/tasks/capistrano-deploy.rake
84
84
  - lib/capistrano/tasks/database.rake
85
85
  - lib/capistrano/tasks/directories.rake