dlss-capistrano 3.4.0 → 3.4.1
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/LICENSE +10 -17
- data/README.md +0 -1
- data/dlss-capistrano.gemspec +2 -2
- data/lib/dlss/capistrano.rb +0 -3
- metadata +5 -18
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1b74a6c50403e39323f83ea80333984e8bd3e267
|
|
4
|
+
data.tar.gz: 3c4420ab6d8a8db35cdbc91821764b133486c8bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 11eb0f1820d5ec7f050d68401ef4ad38dd4d0b8af3dca50a8e52e5299fe63c24aa45081e28f9dffe81a5d9f32065264e72c63269c61604c49c574d2c1ca4cb96
|
|
7
|
+
data.tar.gz: 0e840c201dc0f30db7d3fc9a536b5d19cadaf88a79be5f91ed57038b96005c78441bd11b6a71e59ec6c30af975668aa7d3e7d1e89490d92ffc5d49a966f89caa
|
data/LICENSE
CHANGED
|
@@ -1,20 +1,13 @@
|
|
|
1
|
-
Copyright
|
|
1
|
+
Copyright 2017 The Board of Trustees of the Leland Stanford Junior University
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
-
the following conditions:
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
10
6
|
|
|
11
|
-
|
|
12
|
-
included in all copies or substantial portions of the Software.
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
13
8
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
data/README.md
CHANGED
|
@@ -12,7 +12,6 @@ This gem makes the following assumptions about your Ruby project
|
|
|
12
12
|
- You do not have an .rvmrc checked into git (should be in your .gitignore)
|
|
13
13
|
- You will not use rvm gemsets on the server you deploy to
|
|
14
14
|
- Bundler will install specified gems into {your_project_home}/shared/bundle directory
|
|
15
|
-
- You have a VERSION file that contains an x.y.z version number. This will get passed to the DLSS release board
|
|
16
15
|
- Will deploy from the master branch, unless you set :branch to another branch or tag
|
|
17
16
|
|
|
18
17
|
|
data/dlss-capistrano.gemspec
CHANGED
|
@@ -4,13 +4,14 @@ $:.unshift lib unless $:.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = "dlss-capistrano"
|
|
7
|
-
s.version = "3.4.
|
|
7
|
+
s.version = "3.4.1"
|
|
8
8
|
|
|
9
9
|
s.platform = Gem::Platform::RUBY
|
|
10
10
|
s.authors = ["Chris Beer","Willy Mene"]
|
|
11
11
|
s.email = ["cabeer@stanford.edu"]
|
|
12
12
|
s.summary = "Capistrano recipies for use in SUL/DLSS projects"
|
|
13
13
|
s.description = "Capistrano recipies to assist with the development, testing, and release of SUL/DLSS Ruby project"
|
|
14
|
+
s.license = "Apache-2.0"
|
|
14
15
|
|
|
15
16
|
s.required_rubygems_version = ">= 1.3.6"
|
|
16
17
|
s.required_ruby_version = '>= 1.9.3'
|
|
@@ -18,7 +19,6 @@ Gem::Specification.new do |s|
|
|
|
18
19
|
# All dependencies are runtime dependencies, since this gem's "runtime" is
|
|
19
20
|
# the dependent gem's development-time.
|
|
20
21
|
s.add_dependency "capistrano", "~> 3.0"
|
|
21
|
-
s.add_dependency "capistrano-releaseboard"
|
|
22
22
|
s.add_dependency "capistrano-bundle_audit", ">= 0.1.0"
|
|
23
23
|
s.add_dependency "capistrano-one_time_key"
|
|
24
24
|
s.add_dependency "capistrano-shared_configs"
|
data/lib/dlss/capistrano.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dlss-capistrano
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.4.
|
|
4
|
+
version: 3.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Beer
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2017-04-03 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: capistrano
|
|
@@ -25,20 +25,6 @@ dependencies:
|
|
|
25
25
|
- - "~>"
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
27
|
version: '3.0'
|
|
28
|
-
- !ruby/object:Gem::Dependency
|
|
29
|
-
name: capistrano-releaseboard
|
|
30
|
-
requirement: !ruby/object:Gem::Requirement
|
|
31
|
-
requirements:
|
|
32
|
-
- - ">="
|
|
33
|
-
- !ruby/object:Gem::Version
|
|
34
|
-
version: '0'
|
|
35
|
-
type: :runtime
|
|
36
|
-
prerelease: false
|
|
37
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
38
|
-
requirements:
|
|
39
|
-
- - ">="
|
|
40
|
-
- !ruby/object:Gem::Version
|
|
41
|
-
version: '0'
|
|
42
28
|
- !ruby/object:Gem::Dependency
|
|
43
29
|
name: capistrano-bundle_audit
|
|
44
30
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -99,7 +85,8 @@ files:
|
|
|
99
85
|
- lib/dlss/capistrano.rb
|
|
100
86
|
- lib/lyberteam-capistrano-devel.rb
|
|
101
87
|
homepage:
|
|
102
|
-
licenses:
|
|
88
|
+
licenses:
|
|
89
|
+
- Apache-2.0
|
|
103
90
|
metadata: {}
|
|
104
91
|
post_install_message:
|
|
105
92
|
rdoc_options: []
|
|
@@ -117,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
117
104
|
version: 1.3.6
|
|
118
105
|
requirements: []
|
|
119
106
|
rubyforge_project:
|
|
120
|
-
rubygems_version: 2.5.
|
|
107
|
+
rubygems_version: 2.5.2
|
|
121
108
|
signing_key:
|
|
122
109
|
specification_version: 4
|
|
123
110
|
summary: Capistrano recipies for use in SUL/DLSS projects
|