capistrano-magerun 0.0.1 → 0.1.0
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/README.md +3 -3
- data/capistrano-magerun.gemspec +1 -1
- data/lib/magerun/tasks/magerun.rake +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cbe6004cdf5fc261908ab2e5b7d6ee5399e92152
|
4
|
+
data.tar.gz: 555e44936f9d23a5336bdd7da6296e9070a95962
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d5dfdce8aed118537d04551d27789de1ee58168d312cd28ba03771cd3f08b35167e139c1907bc095a8be959a382115a31ebace050e512a3927ddf4918cc70f1
|
7
|
+
data.tar.gz: 49c63744b45a19873a40155bbc0e656d165860bf7835099141c99c3fc399b5a02d16e9d9ff09bd2537b5b0d8d2ca923d049e2cb351ef624e3f5381213cc21023
|
data/README.md
CHANGED
@@ -55,7 +55,7 @@ deployment (n98-magerun.phar is install in the shared path).
|
|
55
55
|
SSHKit.config.command_map[:magerun] = "#{shared_path.join('n98-magerun.phar')}"
|
56
56
|
|
57
57
|
namespace :deploy do
|
58
|
-
|
58
|
+
after :starting, 'magerun:install'
|
59
59
|
end
|
60
60
|
```
|
61
61
|
|
@@ -74,8 +74,8 @@ Or from within a rake task using capistrano's `invoke`
|
|
74
74
|
|
75
75
|
```ruby
|
76
76
|
task :my_custom_magerun_task do
|
77
|
-
# invoke 'magerun:run', 'sys:maintenance', '--on' # https://github.com/capistrano/
|
78
|
-
Rake::Task['magerun:run'].invoke('sys:maintenance --off')
|
77
|
+
# invoke 'magerun:run', 'sys:maintenance', '--on' # after a new SSHKit release that includes https://github.com/capistrano/sshkit/pull/58
|
78
|
+
Rake::Task['magerun:run'].invoke('sys:maintenance --off') # until then
|
79
79
|
end
|
80
80
|
```
|
81
81
|
|
data/capistrano-magerun.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = 'capistrano-magerun'
|
7
|
-
spec.version = '0.0
|
7
|
+
spec.version = '0.1.0'
|
8
8
|
spec.authors = 'Robert Coleman'
|
9
9
|
spec.email = 'github@robert.net.nz'
|
10
10
|
spec.description = %q{n98-magerun support for Capistrano 3.x}
|
@@ -5,7 +5,7 @@ namespace :magerun do
|
|
5
5
|
SSHKit.config.command_map[:magerun] = "\#{shared_path.join('n98-magerun.phar')}"
|
6
6
|
This is best used before deploy:starting:
|
7
7
|
namespace :deploy do
|
8
|
-
|
8
|
+
after :starting, 'magerun:install'
|
9
9
|
end
|
10
10
|
DESC
|
11
11
|
task :install do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-magerun
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Coleman
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-02-
|
11
|
+
date: 2014-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|
@@ -91,4 +91,3 @@ signing_key:
|
|
91
91
|
specification_version: 4
|
92
92
|
summary: n98-magerun support for Capistrano 3.x
|
93
93
|
test_files: []
|
94
|
-
has_rdoc:
|