capistrano-npm 1.0.1 → 1.0.2

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: cdec96f5506c5122f30808b0bfd9233dd2f62196
4
- data.tar.gz: 0d091606ace374d5d72d6684107867a90f0e9649
3
+ metadata.gz: 064716d8439d99c2e6af60bccaf093ea6a810ce3
4
+ data.tar.gz: 65191ff8342ac81de3385595433c421c7c6f5d49
5
5
  SHA512:
6
- metadata.gz: f5f9df5b3d8f00b547356c635a48af7a3bc2e22fed496450432aa662bc69a3fa3db183e368b92742687fe1a16a724256eb8e4a32910c6347b6cab42914659d71
7
- data.tar.gz: 05bffd2aedf84f8e7640c696a60edbeaada643b78cd9e21ac3ef2bd65fd4d27359b35424fcf8a20af5448733e0004b5fb3f93f42a4db75e52e50a480ab36fe79
6
+ metadata.gz: 3c53da9665c839fa6bee9893568ea9f49b5b964b2419c9fc0a72397ad6033b5461d6ed711add68be129b761f57562a32170ba9504822488382b2e101d498a93a
7
+ data.tar.gz: 77daf9a60a51f95829f9f8dd775d947bfc9d5cd5711d15e4f7227ddfa2954171d77c706e21f141da10580119e3348c3725cff3a26cab1108824710a008a6748f
data/README.md CHANGED
@@ -34,14 +34,14 @@ Configurable options:
34
34
 
35
35
  ```ruby
36
36
  set :npm_target_path, -> { release_path.join('subdir') } # default not set
37
- set :npm_flags, '--production --silent --no-spin' # default
38
- set :npm_roles, :all # default
39
- set :npm_env_variables, {} # default
37
+ set :npm_flags, '--production --silent --no-progress' # default
38
+ set :npm_roles, :all # default
39
+ set :npm_env_variables, {} # default
40
40
  ```
41
41
 
42
42
  ### Dependencies
43
43
 
44
- npm allows for normal `dependencies` and `devDependencies`. By default this gem uses `'--production --silent --no-spin'` as the install flags which will **only** install `dependencies` and skip `devDependencies`. If you want your `devDependencies` installed as well, then remove '--production`.
44
+ npm allows for normal `dependencies` and `devDependencies`. By default this gem uses `'--production --silent --no-progress'` as the install flags which will **only** install `dependencies` and skip `devDependencies`. If you want your `devDependencies` installed as well, then remove `--production`.
45
45
 
46
46
  ## Contributing
47
47
 
@@ -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-npm'
7
- spec.version = '1.0.1'
7
+ spec.version = '1.0.2'
8
8
  spec.authors = ['Scott Walkinshaw']
9
9
  spec.email = ['scott.walkinshaw@gmail.com']
10
10
  spec.description = %q{npm support for Capistrano 3.x}
@@ -67,7 +67,7 @@ end
67
67
 
68
68
  namespace :load do
69
69
  task :defaults do
70
- set :npm_flags, %w(--production --silent --no-spin)
70
+ set :npm_flags, %w(--production --silent --no-progress)
71
71
  set :npm_prune_flags, '--production'
72
72
  set :npm_roles, :all
73
73
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-npm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Walkinshaw
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-03 00:00:00.000000000 Z
11
+ date: 2016-02-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
88
  version: '0'
89
89
  requirements: []
90
90
  rubyforge_project:
91
- rubygems_version: 2.2.2
91
+ rubygems_version: 2.4.5.1
92
92
  signing_key:
93
93
  specification_version: 4
94
94
  summary: npm support for Capistrano 3.x