virustotal_api 0.5.0 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 68e1f3494830e62ef04f24a74431a540d3dd6943ee329b772b8a3629798f0856
4
- data.tar.gz: 58e0b36a8a6745b2db5957ab4b48da429f9ec154b1116d0110933cbc54d9f456
3
+ metadata.gz: eea5809e6c6dc3ac2e0198339a9e010dca3032b2f7f92df35c1b373a93a222fb
4
+ data.tar.gz: c2246c22846665db2518b24180973ddfbb813d3e50f60d9104c86120a29ccc96
5
5
  SHA512:
6
- metadata.gz: 03cf94231610ed5e8002c60dde3cc6d3b3d4ab52682be470023911559c0df6f2cf9230532fe3f002bd2587268405b086742e73a9edba86a4de49eaca37ab1b6b
7
- data.tar.gz: a831140e24d0302e971a33f3b44d7c9760aa271b27d4036bf310ada72f09aa9cd11d1c685793d2a78a0ac6814725de873f8ea6419e92461febef84bb909f2065
6
+ metadata.gz: eac655bf5eb1b214b1799c4e6f1f9bd8476e1dd0e8f77206f1d06e8a1e0fffb30c6a4bb7720fc094760ec54f45fe450c37de5b1555ed1a5e5695ccfe86570e1f
7
+ data.tar.gz: 9932d3ca7ca249ed1e4b6f2dc16503fd28bf9d750c057ce4eacdb779841992e1455873118850ab0376711384dc6da9bba07188c70b5e3322e81577739d17e787
@@ -17,7 +17,7 @@ jobs:
17
17
  # change this to (see https://github.com/ruby/setup-ruby#versioning):
18
18
  uses: ruby/setup-ruby@v1.46.0
19
19
  with:
20
- ruby-version: 2.6
20
+ ruby-version: 2.5
21
21
  - name: Install dependencies
22
22
  run: bundle install
23
23
  - name: Lint
@@ -1,5 +1,10 @@
1
1
  # VirusTotal API Changelog
2
2
 
3
+ ## [0.5.1] - 2020-10-06
4
+
5
+ * Downgrade ruby requirement to 2.5.
6
+ * [@crondaemon](https://github.com/crondaemon)
7
+
3
8
  ## [0.5.0] - 2020-09-02
4
9
 
5
10
  * Full rework to support API V3.
@@ -2,5 +2,5 @@
2
2
 
3
3
  module VirustotalAPI
4
4
  # The GEM version
5
- VERSION = '0.5.0'
5
+ VERSION = '0.5.1'
6
6
  end
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
  spec.homepage = 'https://github.com/pwelch/virustotal_api'
15
15
  spec.license = 'MIT'
16
16
 
17
- spec.required_ruby_version = '>= 2.6'
17
+ spec.required_ruby_version = '>= 2.5'
18
18
 
19
19
  spec.files = `git ls-files -z`.split("\x0")
20
20
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: virustotal_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - pwelch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-24 00:00:00.000000000 Z
11
+ date: 2020-10-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -181,7 +181,6 @@ executables: []
181
181
  extensions: []
182
182
  extra_rdoc_files: []
183
183
  files:
184
- - ".circleci/config.yml"
185
184
  - ".github/CODE_OF_CONDUCT.md"
186
185
  - ".github/CONTRIBUTING.md"
187
186
  - ".github/ISSUE_TEMPLATE.md"
@@ -237,7 +236,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
237
236
  requirements:
238
237
  - - ">="
239
238
  - !ruby/object:Gem::Version
240
- version: '2.6'
239
+ version: '2.5'
241
240
  required_rubygems_version: !ruby/object:Gem::Requirement
242
241
  requirements:
243
242
  - - ">="
@@ -1,23 +0,0 @@
1
- version: 2
2
- jobs:
3
- test:
4
- docker:
5
- - image: circleci/ruby:2.5.3-stretch
6
- steps:
7
- - checkout
8
- - run:
9
- name: Setup
10
- command: |
11
- gem update bundler
12
- bundle install
13
- - run:
14
- name: Rubocop
15
- command: bundle exec rake rubocop
16
- - run:
17
- name: Run Tests
18
- command: bundle exec rake test
19
- workflows:
20
- version: 2
21
- test:
22
- jobs:
23
- - test