capistrano-npm 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 03279ddd9f7ac5efad92ec70586f4e1d2a26479d
4
- data.tar.gz: d7dd5ac3a5d933c9b9fafb1b66d24442ac447b3f
3
+ metadata.gz: 6c15b4955d3cc537e4a8fb0b4dae69120abd1199
4
+ data.tar.gz: 77d88dae54ebed3a3ab0b91d1c26fb921823d2c5
5
5
  SHA512:
6
- metadata.gz: a298db70c092b5f5c2769ec4f32492eeb56600b6721caa8769a237c4b63874994f06f00e3792088666d51a42e43d24a7a1f67ed41f75078dcd5b47d41fd03574
7
- data.tar.gz: 50fde150def4605b3b9e4afceb15a65e6df600b4f7ae72de71ff36b826bb1bc591c160abc7501b63e7cae27bf05f56edd9f049f110aa7185117ed756ddcd2884
6
+ metadata.gz: 3adfc7c4d0f69835f0f95fc579b5085a366a5f9a52e30bcca9c7491547a22a2790a4a42c2bc05901179ec7e389d68e4ec0e001f3863bb95ad8fb14c9ed2148cc
7
+ data.tar.gz: 6b614f1c188fed6eb9339ebfc17ed6f7c60480dee5512ed8c792910e247c589f1e8b77e481f5d0385962cccd21e448728fabfbb1ebd19570ecbbef5975a731d5
data/README.md CHANGED
@@ -13,7 +13,7 @@ gem install capistrano-npm
13
13
  Or if you're using Bundler, add it to your `Gemfile`:
14
14
 
15
15
  ```ruby
16
- gem 'capistrano-npm', github: 'swalkinshaw/npm'
16
+ gem 'capistrano-npm'
17
17
  ```
18
18
 
19
19
  2. Add to `Capfile` or `config/deploy.rb`:
@@ -51,4 +51,4 @@ This extension also adds the `npm` command as a Capistrano dependency. Meaning w
51
51
  ### Configuration
52
52
 
53
53
  * `npm_path`: Path to npm bin on the remote server. Defaults to just `npm` as its assumed to be in your `$PATH`.
54
- * `npm_options`: Options for `npm` command. Defaults to `--production` to avoid installing dev dependencies.
54
+ * `npm_options`: Options for `npm` command. Defaults to `--production --silent` to avoid installing dev dependencies.
@@ -1,6 +1,6 @@
1
1
  Capistrano::Configuration.instance(true).load do
2
2
  set :npm_path, 'npm'
3
- set :npm_options, '--production'
3
+ set :npm_options, '--production --silent'
4
4
 
5
5
  depend :remote, :command, npm_path
6
6
 
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module Npm
3
- VERSION = '0.0.1'
3
+ VERSION = '0.0.2'
4
4
  end
5
5
  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: 0.0.1
4
+ version: 0.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: 2013-07-19 00:00:00.000000000 Z
11
+ date: 2013-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano