fog-aliyun 0.4.0 → 0.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/.github/dependabot.yml +10 -0
- data/.github/workflows/ci.yml +18 -0
- data/CHANGELOG.md +6 -1
- data/README.md +13 -2
- data/SECURITY.md +5 -0
- data/dependabot.yml +10 -0
- data/fog-aliyun.gemspec +1 -1
- data/lib/fog/aliyun/version.rb +1 -1
- metadata +17 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 35d36237b704082b491a7bb222b9072d580e6b6f4fc4cdd651bc93a4e5c3940b
|
|
4
|
+
data.tar.gz: 93345a54b567a55450315e0f3646c036c4893a2af2ee933075410016e9fc7aeb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 625f539b7f8582bc8af645d3e3880abd718c7ea440a5f13732ae5dd9462b04b3c9559b82436f94fe6d40b693ce3685a31052359103646495ac525012daa6717a
|
|
7
|
+
data.tar.gz: ed26ec340a873957993eb12af186a1591b4958542c709fe687fd6cc3a2df88941401f346838dc6f8aade7870cf3dba6f813c14d09293511f1ce1d340120e9a40
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# This workflow uses actions that are not certified by GitHub.
|
|
2
|
+
# They are provided by a third-party and are governed by
|
|
3
|
+
# separate terms of service, privacy policy, and support
|
|
4
|
+
# documentation.
|
|
5
|
+
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
|
6
|
+
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
|
7
|
+
|
|
8
|
+
name: Ruby
|
|
9
|
+
|
|
10
|
+
on:
|
|
11
|
+
push:
|
|
12
|
+
branches: [ master ]
|
|
13
|
+
pull_request:
|
|
14
|
+
branches: [ master ]
|
|
15
|
+
|
|
16
|
+
jobs:
|
|
17
|
+
test:
|
|
18
|
+
uses: fog/.github/.github/workflows/ci.yml@v1.5.0
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -309,8 +309,6 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
309
309
|
|
|
310
310
|
## Testing
|
|
311
311
|
|
|
312
|
-
|
|
313
|
-
|
|
314
312
|
To run test suite use the following command:
|
|
315
313
|
|
|
316
314
|
```
|
|
@@ -365,6 +363,19 @@ export PERFORMANCE=true
|
|
|
365
363
|
rake spec
|
|
366
364
|
```
|
|
367
365
|
|
|
366
|
+
## Publish a new release
|
|
367
|
+
|
|
368
|
+
1. Update the next version in the file `lib/fog/aliyun/version`
|
|
369
|
+
2. Update the `CHANGELOG.md`
|
|
370
|
+
3. Build the next release by running command
|
|
371
|
+
```shell
|
|
372
|
+
gem build fog-aliyun.gemspec
|
|
373
|
+
```
|
|
374
|
+
4. Push the next release to the [https://rubygems.org/](https://rubygems.org/)
|
|
375
|
+
```shell
|
|
376
|
+
gem push fog-aliyun-<version>.gem
|
|
377
|
+
```
|
|
378
|
+
|
|
368
379
|
## License
|
|
369
380
|
|
|
370
381
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/SECURITY.md
ADDED
data/dependabot.yml
ADDED
data/fog-aliyun.gemspec
CHANGED
|
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
|
|
|
30
30
|
spec.add_development_dependency 'memory_profiler'
|
|
31
31
|
spec.add_development_dependency 'aliyun-sdk', '~> 0.8.0'
|
|
32
32
|
|
|
33
|
-
spec.add_dependency 'addressable', '
|
|
33
|
+
spec.add_dependency 'addressable', '>= 2.8', '< 2.10'
|
|
34
34
|
spec.add_dependency 'aliyun-sdk', '~> 0.8.0'
|
|
35
35
|
spec.add_dependency 'fog-core'
|
|
36
36
|
spec.add_dependency 'fog-json'
|
data/lib/fog/aliyun/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fog-aliyun
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Qinsi Deng, Jianxun Li, Jane Han, Guimin He
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: bundler
|
|
@@ -140,16 +139,22 @@ dependencies:
|
|
|
140
139
|
name: addressable
|
|
141
140
|
requirement: !ruby/object:Gem::Requirement
|
|
142
141
|
requirements:
|
|
143
|
-
- - "
|
|
142
|
+
- - ">="
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: '2.8'
|
|
145
|
+
- - "<"
|
|
144
146
|
- !ruby/object:Gem::Version
|
|
145
|
-
version: 2.
|
|
147
|
+
version: '2.10'
|
|
146
148
|
type: :runtime
|
|
147
149
|
prerelease: false
|
|
148
150
|
version_requirements: !ruby/object:Gem::Requirement
|
|
149
151
|
requirements:
|
|
150
|
-
- - "
|
|
152
|
+
- - ">="
|
|
153
|
+
- !ruby/object:Gem::Version
|
|
154
|
+
version: '2.8'
|
|
155
|
+
- - "<"
|
|
151
156
|
- !ruby/object:Gem::Version
|
|
152
|
-
version: 2.
|
|
157
|
+
version: '2.10'
|
|
153
158
|
- !ruby/object:Gem::Dependency
|
|
154
159
|
name: aliyun-sdk
|
|
155
160
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -229,6 +234,8 @@ executables: []
|
|
|
229
234
|
extensions: []
|
|
230
235
|
extra_rdoc_files: []
|
|
231
236
|
files:
|
|
237
|
+
- ".github/dependabot.yml"
|
|
238
|
+
- ".github/workflows/ci.yml"
|
|
232
239
|
- ".gitignore"
|
|
233
240
|
- ".rspec"
|
|
234
241
|
- ".rubocop.yml"
|
|
@@ -242,8 +249,10 @@ files:
|
|
|
242
249
|
- LICENSE.txt
|
|
243
250
|
- README.md
|
|
244
251
|
- Rakefile
|
|
252
|
+
- SECURITY.md
|
|
245
253
|
- bin/console
|
|
246
254
|
- bin/setup
|
|
255
|
+
- dependabot.yml
|
|
247
256
|
- fog-aliyun.gemspec
|
|
248
257
|
- lib/fog/aliyun.rb
|
|
249
258
|
- lib/fog/aliyun/compute.rb
|
|
@@ -360,7 +369,6 @@ homepage: https://github.com/fog/fog-aliyun
|
|
|
360
369
|
licenses:
|
|
361
370
|
- MIT
|
|
362
371
|
metadata: {}
|
|
363
|
-
post_install_message:
|
|
364
372
|
rdoc_options: []
|
|
365
373
|
require_paths:
|
|
366
374
|
- lib
|
|
@@ -375,8 +383,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
375
383
|
- !ruby/object:Gem::Version
|
|
376
384
|
version: '0'
|
|
377
385
|
requirements: []
|
|
378
|
-
rubygems_version:
|
|
379
|
-
signing_key:
|
|
386
|
+
rubygems_version: 4.0.3
|
|
380
387
|
specification_version: 4
|
|
381
388
|
summary: Fog provider for Alibaba Cloud Web Services.
|
|
382
389
|
test_files: []
|