capistrano-olympus 0.0.3 → 0.0.4
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 +4 -4
- data/{CHANGELOG.md → CHANGELOG} +0 -0
- data/README.md +1 -2
- data/capistrano-olympus.gemspec +22 -3
- metadata +2 -3
- data/.gitignore +0 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 39e050325bbdba4a20ee930de3ed02845a1fc049
|
4
|
+
data.tar.gz: f067ef11184ecdd67d488d579ce941ea6928e7c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d5485f8fb92375205601a57056ca9b78200cf19932d95a6e575b6aeaae32282a5280efa5baf7d4e437f242311383ccfc884037a34ed1e1ad1cdf6fb123d8147
|
7
|
+
data.tar.gz: 42e39e019c75f9017938b03eaeb31efbdfa4c56be261cd7933098983c173dacd12d6cbb3e3e123b5e89457c12dd0fc46270e5e1b88b78828a03b813e87505a4b
|
data/{CHANGELOG.md → CHANGELOG}
RENAMED
File without changes
|
data/README.md
CHANGED
data/capistrano-olympus.gemspec
CHANGED
@@ -4,8 +4,8 @@ $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.
|
8
|
-
gem.date =
|
7
|
+
gem.version = '0.0.4'
|
8
|
+
gem.date = Time.now.strftime("%Y-%m-%d")
|
9
9
|
gem.authors = ['Achraf Chouk']
|
10
10
|
gem.email = ['achrafchouk@gmail.com']
|
11
11
|
gem.description = "Capistrano 3.x deployment processes for WordPress and Olympus framework"
|
@@ -13,7 +13,26 @@ Gem::Specification.new do |gem|
|
|
13
13
|
gem.homepage = 'http://github.com/crewstyle/capistrano-olympus'
|
14
14
|
gem.license = 'MIT'
|
15
15
|
|
16
|
-
gem.files =
|
16
|
+
gem.files = [
|
17
|
+
'CHANGELOG',
|
18
|
+
'LICENSE',
|
19
|
+
'README.md',
|
20
|
+
'capistrano-olympus.gemspec',
|
21
|
+
'lib/capistrano-olympus.rb',
|
22
|
+
'lib/capistrano/olympus.rb',
|
23
|
+
'lib/capistrano/tasks/capistrano-deploy.rake',
|
24
|
+
'lib/capistrano/tasks/database.rake',
|
25
|
+
'lib/capistrano/tasks/directories.rake',
|
26
|
+
'lib/capistrano/tasks/files.rake',
|
27
|
+
'lib/capistrano/tasks/htaccess.rake',
|
28
|
+
'lib/capistrano/tasks/pagespeed.rake',
|
29
|
+
'lib/capistrano/tasks/php.rake',
|
30
|
+
'lib/capistrano/tasks/redis.rake',
|
31
|
+
'lib/capistrano/tasks/robots.rake',
|
32
|
+
'lib/capistrano/tasks/server.rake',
|
33
|
+
'lib/capistrano/tasks/varnish.rake',
|
34
|
+
'lib/capistrano/vars/defaults.rb',
|
35
|
+
]
|
17
36
|
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
37
|
|
19
38
|
# no tests as of yet
|
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.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Achraf Chouk
|
@@ -73,8 +73,7 @@ executables: []
|
|
73
73
|
extensions: []
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
|
-
-
|
77
|
-
- CHANGELOG.md
|
76
|
+
- CHANGELOG
|
78
77
|
- LICENSE
|
79
78
|
- README.md
|
80
79
|
- capistrano-olympus.gemspec
|