capistrano-npm 0.0.1 → 0.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 +4 -4
- data/README.md +2 -2
- data/lib/capistrano/npm.rb +1 -1
- data/lib/capistrano/npm/version.rb +1 -1
- 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: 6c15b4955d3cc537e4a8fb0b4dae69120abd1199
|
|
4
|
+
data.tar.gz: 77d88dae54ebed3a3ab0b91d1c26fb921823d2c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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'
|
|
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.
|
data/lib/capistrano/npm.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2013-07-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|