capistrano-grunt 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/README.md +6 -6
- data/capistrano-grunt.gemspec +1 -1
- data/lib/capistrano/tasks/grunt.rake +1 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8ae357b4eb66d2f3a784c780ac45c59fe024324
|
4
|
+
data.tar.gz: e9aa2835b3c8e93475a8f6cdfab82eec7031eb7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4bd8c12993846fdc01a28609a030ce088914d6ec75cb427a240616c9ff884f424395dc013239ee92eaf5177420e9a6f29d9e1b7b0627e125eaa49f71645aeae
|
7
|
+
data.tar.gz: bcd5b7fa1d45b2c08295f66b851cff2cac0774cdc120ab140f04363dc9610b122513094594a3803f67dd43a91c6eb3515587dd219d2578f692750aa3056220cc
|
data/README.md
CHANGED
@@ -60,14 +60,14 @@ To specify a `Gruntfile`, use the `:grunt_file` option:
|
|
60
60
|
set :grunt_file, -> { release_path.join('config/Gruntfile.js') }
|
61
61
|
```
|
62
62
|
|
63
|
-
|
63
|
+
Configurable options:
|
64
64
|
|
65
65
|
```ruby
|
66
|
-
set :grunt_file, nil
|
67
|
-
set :grunt_tasks, nil
|
68
|
-
set :grunt_flags, '--no-color'
|
69
|
-
set :grunt_roles, :all
|
70
|
-
set :grunt_target_path,
|
66
|
+
set :grunt_file, nil # default
|
67
|
+
set :grunt_tasks, nil # default
|
68
|
+
set :grunt_flags, '--no-color' # default
|
69
|
+
set :grunt_roles, :all # default
|
70
|
+
set :grunt_target_path, release_path.join('subdir') # default not set
|
71
71
|
```
|
72
72
|
|
73
73
|
## Contributing
|
data/capistrano-grunt.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-grunt'
|
7
|
-
spec.version = '0.0.
|
7
|
+
spec.version = '0.0.4'
|
8
8
|
spec.authors = ['Scott Walkinshaw', 'Koen Punt']
|
9
9
|
spec.email = ['scott.walkinshaw@gmail.com', 'me@koen.pt']
|
10
10
|
spec.description = %q{Grunt support for Capistrano 3.x}
|
@@ -13,7 +13,7 @@ desc <<-DESC
|
|
13
13
|
DESC
|
14
14
|
task :grunt do
|
15
15
|
on roles fetch(:grunt_roles) do
|
16
|
-
within fetch(:grunt_target_path,
|
16
|
+
within fetch(:grunt_target_path, release_path) do
|
17
17
|
options = [
|
18
18
|
fetch(:grunt_flags)
|
19
19
|
]
|
@@ -35,7 +35,6 @@ namespace :load do
|
|
35
35
|
set :grunt_file, nil
|
36
36
|
set :grunt_tasks, nil
|
37
37
|
set :grunt_flags, '--no-color'
|
38
|
-
set :grunt_target_path, nil
|
39
38
|
set :grunt_roles, :all
|
40
39
|
end
|
41
40
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-grunt
|
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
|
- Scott Walkinshaw
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-12-
|
12
|
+
date: 2013-12-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: capistrano
|