dkdeploy-test_environment 2.0.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +5 -2
- data/LICENSE +1 -1
- data/dkdeploy-test_enviroment.gemspec +2 -2
- data/lib/dkdeploy/test_environment/application.rb +2 -2
- data/lib/dkdeploy/test_environment/version.rb +1 -1
- metadata +3 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 68ffc18271f1951146f06108c413c2aa914d41d1e3daac6fa7d7cccd1f32412b
|
4
|
+
data.tar.gz: 59b3e85f40a05b26594aa2cafa7c2d68348f3eb3c4bc286d72267a7de5895bc4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c3812ddef1133baca822f7336eb51947aa8eaa95aeafac01616b73aad263e2c7a39c860895571b364963ba03bbba6cbff4d8a28c4ee73f2201b6e4e45f12b0c
|
7
|
+
data.tar.gz: 742c9c25b229a2fbf9cd763ef44cc44ae5b777fe9b1617aa67d65b88de8ab23c8dd84110fca0486f6f296e21ae9fd4030a58cd9f55ea41f542934a2397fbfe47
|
data/CHANGELOG.md
CHANGED
@@ -4,17 +4,20 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
4
4
|
|
5
5
|
## [Unreleased]
|
6
6
|
|
7
|
+
## [2.0.1] - 2018-12-03
|
8
|
+
### Summary
|
9
|
+
- hotfix to run Bundler with path to Gemfile
|
10
|
+
|
7
11
|
## [2.0.0] - 2017-04-05
|
8
12
|
### Summary
|
9
13
|
- Bundler, Capistrano updates
|
10
14
|
- moved dependencies to development dependencies
|
11
15
|
|
12
|
-
|
13
16
|
## [1.0.0] - 2016-06-20
|
14
17
|
### Summary
|
15
|
-
|
16
18
|
- first public release
|
17
19
|
|
18
20
|
[Unreleased]: https://github.com/dkdeploy/dkdeploy-test_environment/compare/master...develop
|
21
|
+
[2.0.1]: https://github.com/dkdeploy/dkdeploy-test_environment/releases/tag/v2.0.1
|
19
22
|
[2.0.0]: https://github.com/dkdeploy/dkdeploy-test_environment/releases/tag/v2.0.0
|
20
23
|
[1.0.0]: https://github.com/dkdeploy/dkdeploy-test_environment/releases/tag/v1.0.0
|
data/LICENSE
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Copyright (c) 2014-
|
1
|
+
Copyright (c) 2014-2018 dkd Internet Service GmbH, Frankfurt am Main (Germany), https://dkd.de/
|
2
2
|
|
3
3
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
4
|
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.name = 'dkdeploy-test_environment'
|
9
9
|
spec.version = Dkdeploy::TestEnvironment::Version
|
10
10
|
spec.license = 'MIT'
|
11
|
-
spec.authors = ['Lars Tode', 'Timo Webler', 'Kieran Hayes', 'Nicolai Reuschling'
|
12
|
-
spec.email = ['lars.tode@dkd.de', 'timo.webler@dkd.de', 'kieran.hayes@dkd.de', 'nicolai.reuschling@dkd.de'
|
11
|
+
spec.authors = ['Lars Tode', 'Timo Webler', 'Kieran Hayes', 'Nicolai Reuschling']
|
12
|
+
spec.email = ['lars.tode@dkd.de', 'timo.webler@dkd.de', 'kieran.hayes@dkd.de', 'nicolai.reuschling@dkd.de']
|
13
13
|
spec.description = 'test infrastructure for dkdeploy'
|
14
14
|
spec.summary = 'dkdeploy-test_environment provides a test application for dkdeploy'
|
15
15
|
spec.homepage = 'https://github.com/dkdeploy/dkdeploy-test_environment'
|
@@ -47,10 +47,10 @@ module Dkdeploy
|
|
47
47
|
#
|
48
48
|
def initialize_environment
|
49
49
|
# Call command at test bundler environment. Not with gem bundler environment
|
50
|
-
Bundler.with_clean_env do
|
50
|
+
::Bundler.with_clean_env do
|
51
51
|
cd test_app_path do
|
52
52
|
# Install necessary gems
|
53
|
-
`bundle check || bundle install`
|
53
|
+
`bundle check --gemfile Gemfile || bundle install --gemfile Gemfile`
|
54
54
|
raise "Error running 'bundle install'" unless $?.success?
|
55
55
|
end
|
56
56
|
end
|
metadata
CHANGED
@@ -1,18 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dkdeploy-test_environment
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lars Tode
|
8
8
|
- Timo Webler
|
9
9
|
- Kieran Hayes
|
10
10
|
- Nicolai Reuschling
|
11
|
-
- Johannes Goslar
|
12
11
|
autorequire:
|
13
12
|
bindir: bin
|
14
13
|
cert_chain: []
|
15
|
-
date:
|
14
|
+
date: 2018-12-03 00:00:00.000000000 Z
|
16
15
|
dependencies:
|
17
16
|
- !ruby/object:Gem::Dependency
|
18
17
|
name: bundler
|
@@ -146,7 +145,6 @@ email:
|
|
146
145
|
- timo.webler@dkd.de
|
147
146
|
- kieran.hayes@dkd.de
|
148
147
|
- nicolai.reuschling@dkd.de
|
149
|
-
- johannes.goslar@dkd.de
|
150
148
|
executables: []
|
151
149
|
extensions: []
|
152
150
|
extra_rdoc_files: []
|
@@ -195,7 +193,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
195
193
|
version: '0'
|
196
194
|
requirements: []
|
197
195
|
rubyforge_project:
|
198
|
-
rubygems_version: 2.
|
196
|
+
rubygems_version: 2.7.8
|
199
197
|
signing_key:
|
200
198
|
specification_version: 4
|
201
199
|
summary: dkdeploy-test_environment provides a test application for dkdeploy
|