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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e25f1e755126cbc4e3c5265ae683b7f2ce8e5081
4
- data.tar.gz: 4f6881632615810fe5258f8402d4c60e8ffd9b83
3
+ metadata.gz: 268e6d7deb5d5a4ba23a61e75ea9edb41f51e107
4
+ data.tar.gz: 38785120ac97138f2b8a6f3e1e94042e94396587
5
5
  SHA512:
6
- metadata.gz: 49d0c2780b99b08144a22ffed6dbf13c89cc0091c7bea7f6e358aaabb231e235a9203d6e486858f0bc5f1ac83e61a672996b11c62ea1c6d04bfbcb121307a57a
7
- data.tar.gz: 218d8e2e1eacdb8a179d05c20d4f386f23143c8a4250c0aee35b6ec776b1811511557409e40c02aa5b61f4694e2637ffd82d75379837512376bd59f41dae26e9
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
- - docker run -e "CI=true" -v $PWD:/srv/capsulecd analogj/capsulecd:ruby sh -c "bundle install --with test && rake 'spec:ruby'"
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
 
@@ -127,7 +127,7 @@ TOX
127
127
  index-servers=pypi
128
128
 
129
129
  [pypi]
130
- repository = https://pypi.python.org/pypi
130
+ repository = https://upload.pypi.org/legacy/
131
131
  username = #{@config.pypi_username}
132
132
  password = #{@config.pypi_password}
133
133
  EOT
@@ -1,3 +1,3 @@
1
1
  module CapsuleCD
2
- VERSION = '1.0.10'
2
+ VERSION = '1.0.11'
3
3
  end
@@ -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 upload',{:chdir=>source_git_local_path}).and_return(true)
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.10
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-01-17 00:00:00.000000000 Z
11
+ date: 2017-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor