capistrano-npm 0.0.5 → 1.0.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 +13 -5
- data/README.md +3 -3
- data/capistrano-npm.gemspec +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
2
|
+
!binary "U0hBMQ==":
|
|
3
|
+
metadata.gz: !binary |-
|
|
4
|
+
YTk0MmY1ZDZlNmYwN2EwZjFiYjM4MmYyNTJlYmMzOGFhZjgzY2M1Mw==
|
|
5
|
+
data.tar.gz: !binary |-
|
|
6
|
+
NGY3YzY5ZGQyYzQwODMwNjQ3ZmIwNjE3YmE4ZWEyOWE5MTRhZWU3Mw==
|
|
5
7
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
|
|
8
|
+
metadata.gz: !binary |-
|
|
9
|
+
YmU2YzhjZGJmMjMxYTFjZjhmZGEwODQyZTBhZDVhMTVhMDViN2FkMTlkNmNk
|
|
10
|
+
NWQ4MjMzMDg4ZWUwZWQzMmFiM2QwZDY1YWI1ODhiMWQ3MDMxOTA1MWE0MWYy
|
|
11
|
+
YWY3YzMwNTIwMTI2YjZhMWZjNzhjM2ZhNzYxNjA2ZWUwYzc5ZWM=
|
|
12
|
+
data.tar.gz: !binary |-
|
|
13
|
+
YThmMzI2ZTI2NTUyNGQwNmJlZWM5ZGM4MTJhYjhhY2JmOWU4MTQzNDc5NmQ3
|
|
14
|
+
N2YxNGRjMWViMWM5MTAxOTA3ODcxMjhkZWJkMjVhZDEzMjNhM2U0NGU4OGNi
|
|
15
|
+
MDU0MjZmMDE2YmMwMjY0ZTRiZTE2NzcxN2M1NmQ1M2JiOGMwZWU=
|
data/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# Capistrano::npm
|
|
2
2
|
|
|
3
|
-
npm
|
|
3
|
+
npm support for Capistrano 3.x
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
Add this line to your application's Gemfile:
|
|
8
8
|
|
|
9
9
|
```ruby
|
|
10
|
-
gem 'capistrano', '~> 3.
|
|
10
|
+
gem 'capistrano', '~> 3.1.0'
|
|
11
11
|
gem 'capistrano-npm'
|
|
12
12
|
```
|
|
13
13
|
|
|
@@ -33,7 +33,7 @@ or can be run in isolation with `cap production npm:install`
|
|
|
33
33
|
Configurable options:
|
|
34
34
|
|
|
35
35
|
```ruby
|
|
36
|
-
set :npm_target_path, release_path.join('subdir') # default not set
|
|
36
|
+
set :npm_target_path, -> { release_path.join('subdir') } # default not set
|
|
37
37
|
set :npm_flags, '--production --silent' # default
|
|
38
38
|
set :npm_roles, :all # default
|
|
39
39
|
```
|
data/capistrano-npm.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-npm'
|
|
7
|
-
spec.version = '0.0
|
|
7
|
+
spec.version = '1.0.0'
|
|
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}
|
metadata
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-npm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Scott Walkinshaw
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-03-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - '>='
|
|
17
|
+
- - ! '>='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: 3.0.0.pre
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - '>='
|
|
24
|
+
- - ! '>='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 3.0.0.pre
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
@@ -42,14 +42,14 @@ dependencies:
|
|
|
42
42
|
name: rake
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- - '>='
|
|
45
|
+
- - ! '>='
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
47
|
version: '0'
|
|
48
48
|
type: :development
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- - '>='
|
|
52
|
+
- - ! '>='
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
55
|
description: npm support for Capistrano 3.x
|
|
@@ -78,17 +78,17 @@ require_paths:
|
|
|
78
78
|
- lib
|
|
79
79
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
80
80
|
requirements:
|
|
81
|
-
- - '>='
|
|
81
|
+
- - ! '>='
|
|
82
82
|
- !ruby/object:Gem::Version
|
|
83
83
|
version: '0'
|
|
84
84
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
85
85
|
requirements:
|
|
86
|
-
- - '>='
|
|
86
|
+
- - ! '>='
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
88
|
version: '0'
|
|
89
89
|
requirements: []
|
|
90
90
|
rubyforge_project:
|
|
91
|
-
rubygems_version: 2.
|
|
91
|
+
rubygems_version: 2.1.10
|
|
92
92
|
signing_key:
|
|
93
93
|
specification_version: 4
|
|
94
94
|
summary: npm support for Capistrano 3.x
|