capsulecd 1.0.10 → 1.0.11
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/circle.yml +1 -1
- data/lib/capsulecd/python/python_engine.rb +1 -1
- data/lib/capsulecd/version.rb +1 -1
- data/spec/lib/capsulecd/python/python_engine_spec.rb +3 -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: 268e6d7deb5d5a4ba23a61e75ea9edb41f51e107
|
|
4
|
+
data.tar.gz: 38785120ac97138f2b8a6f3e1e94042e94396587
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5d6d9c02b9987e501efdf4557e0e4c40c7c783ab421e37dd7bafd9b8bb3520b7a3f6b76b0d9a557ae4c908b06c0f845450bfc72cf7625ff36525c633eb4bfc14
|
|
7
|
+
data.tar.gz: 675c25fbe57ad803a98501018762455569213d3dc0fd775feeac04fd11064dc20caccbb9fc910a7f79520e2f12d2bb7a07933860950a91767d2c5c8fda64e2e7
|
data/circle.yml
CHANGED
|
@@ -18,7 +18,7 @@ test:
|
|
|
18
18
|
- docker run -e "CI=true" -v $PWD:/srv/capsulecd analogj/capsulecd:javascript sh -c "bundle install --with test && rake 'spec:javascript'"
|
|
19
19
|
- docker run -e "CI=true" -v $PWD:/srv/capsulecd analogj/capsulecd:node sh -c "bundle install --with test && rake 'spec:node'"
|
|
20
20
|
- docker run -e "CI=true" -v $PWD:/srv/capsulecd analogj/capsulecd:python sh -c "bundle install --with test && rake 'spec:python'"
|
|
21
|
-
|
|
21
|
+
#- docker run -e "CI=true" -v $PWD:/srv/capsulecd analogj/capsulecd:ruby sh -c "bundle install --with test && rake 'spec:ruby'"
|
|
22
22
|
|
|
23
23
|
- docker run -e "CI=true" -v $PWD:/srv/capsulecd analogj/capsulecd sh -c "bundle install --with test && rake 'coveralls:push'"
|
|
24
24
|
|
data/lib/capsulecd/version.rb
CHANGED
|
@@ -120,7 +120,9 @@ describe 'CapsuleCD::Python::PythonEngine', :python do
|
|
|
120
120
|
allow(git_commit_double).to receive(:name).and_return('v1.0.7')
|
|
121
121
|
|
|
122
122
|
#stub methods in release_step
|
|
123
|
-
allow(Open3).to receive(:popen3).with('python setup.py sdist
|
|
123
|
+
allow(Open3).to receive(:popen3).with('python setup.py sdist',{:chdir=>source_git_local_path}).and_return(true)
|
|
124
|
+
allow(Open3).to receive(:popen3).with("twine upload --config-file #{File.expand_path('~/.pypirc')} dist/*",{:chdir=>source_git_local_path}).and_return(true)
|
|
125
|
+
|
|
124
126
|
allow(File).to receive(:open).with(File.expand_path('~/.pypirc'), 'w+').and_return(true)
|
|
125
127
|
|
|
126
128
|
#stub methods in source_release
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capsulecd
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jason Kulatunga (AnalogJ)
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-07-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|