vpr 2.2.0 → 2.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 63e2d8595f1a8d32c72bb664223ea48e1e230c59ce7916005d7191f587a0fab9
4
- data.tar.gz: 773360623a477b2bb180a7b3cba1f1780b0218e49837f7e8be1b9b4ce9842f87
3
+ metadata.gz: f4392e553d246cbcdc5eae1a5f1489adf327b487ff6bbc9804cfbe2c84ee69bb
4
+ data.tar.gz: a855bdaf9bc749e169b8c088d64de873749bf0ba6012f24f4a57965d5cdad303
5
5
  SHA512:
6
- metadata.gz: e47fb783652e5c73ef07704814709442740f1608ec83edbc7bb982f48c1144fc7bf21112929aeda00f51e11c186bcfcb7cc1d9c9aa249684ffddcb7403cd5da4
7
- data.tar.gz: 290038d243b4f71e7435e7bf4ebc7381375f49a9e3ae8dee2d28a87167935000c01e0020048c2c036aff61d4f699f4a3222d9b01b24674505c52e60ddc5d11cd
6
+ metadata.gz: 553418872ac7f362acfafa88f54a5674c9bcade97e7e1315a7914cb4fb9322789e3aa48404fb0196b7506468cc4dddbf70cda558c9daabcf494df65667d72901
7
+ data.tar.gz: 7ca2e72a8062ee6c3ba139c35c5f8538052e1301d1b3d1e7b1f1b5706922111f7186d541552ae754a12d7c2748343db7ff8e67c451bd2156acb4d851cabfec6e
@@ -0,0 +1,32 @@
1
+ name: CI
2
+ on:
3
+ pull_request:
4
+ branches: [ master ]
5
+ push:
6
+ branches: [ master ]
7
+ jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ ruby_version: [ '2.5', '2.6', '2.7' ]
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v2
16
+ - name: Setup ruby ${{ matrix.ruby_version }}
17
+ uses: actions/setup-ruby@v1
18
+ with:
19
+ ruby-version: ${{ matrix.ruby_version }}
20
+ - name: Setup cache key and directory for gems cache
21
+ uses: actions/cache@v1
22
+ with:
23
+ path: vendor/bundle
24
+ key: ${{ runner.os }}-gem-use-ruby-${{ matrix.ruby_version }}-${{ hashFiles('**/Gemfile.lock') }}
25
+ - name: Bundle install
26
+ run: |
27
+ gem install bundler
28
+ bundle config path vendor/bundle
29
+ bundle install --jobs 4 --retry 3
30
+ - name: Run tests
31
+ run: |
32
+ bundle exec rspec --format progress
@@ -1,29 +1,31 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- vpr (2.2.0)
5
- git (~> 1.5)
4
+ vpr (2.2.1)
5
+ git (~> 1.7)
6
6
  launchy (~> 2.4)
7
7
  thor (~> 0.20)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- activesupport (5.2.3)
12
+ activesupport (6.0.3.1)
13
13
  concurrent-ruby (~> 1.0, >= 1.0.2)
14
14
  i18n (>= 0.7, < 2)
15
15
  minitest (~> 5.1)
16
16
  tzinfo (~> 1.1)
17
+ zeitwerk (~> 2.2, >= 2.2.2)
17
18
  addressable (2.6.0)
18
19
  public_suffix (>= 2.0.2, < 4.0)
19
20
  ast (2.4.0)
20
- concurrent-ruby (1.1.5)
21
+ concurrent-ruby (1.1.6)
21
22
  diff-lcs (1.3)
22
23
  faraday (0.15.4)
23
24
  multipart-post (>= 1.2, < 3)
24
25
  faraday-http-cache (2.0.0)
25
26
  faraday (~> 0.8)
26
- git (1.5.0)
27
+ git (1.7.0)
28
+ rchardet (~> 1.8)
27
29
  github_changelog_generator (1.14.3)
28
30
  activesupport
29
31
  faraday-http-cache
@@ -32,12 +34,12 @@ GEM
32
34
  rainbow (>= 2.1)
33
35
  rake (>= 10.0)
34
36
  retriable (~> 2.1)
35
- i18n (1.6.0)
37
+ i18n (1.8.2)
36
38
  concurrent-ruby (~> 1.0)
37
39
  jaro_winkler (1.5.3)
38
40
  launchy (2.4.3)
39
41
  addressable (~> 2.3)
40
- minitest (5.11.3)
42
+ minitest (5.14.1)
41
43
  multi_json (1.13.1)
42
44
  multipart-post (2.1.1)
43
45
  octokit (4.14.0)
@@ -48,6 +50,7 @@ GEM
48
50
  public_suffix (3.1.1)
49
51
  rainbow (3.0.0)
50
52
  rake (13.0.1)
53
+ rchardet (1.8.0)
51
54
  retriable (2.1.0)
52
55
  rspec (3.8.0)
53
56
  rspec-core (~> 3.8.0)
@@ -82,9 +85,10 @@ GEM
82
85
  rubocop-performance (~> 1.4.0)
83
86
  thor (0.20.3)
84
87
  thread_safe (0.3.6)
85
- tzinfo (1.2.5)
88
+ tzinfo (1.2.7)
86
89
  thread_safe (~> 0.1)
87
90
  unicode-display_width (1.6.0)
91
+ zeitwerk (2.3.0)
88
92
 
89
93
  PLATFORMS
90
94
  ruby
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  ![StandardRB](https://github.com/JuanCrg90/vpr/workflows/StandardRB/badge.svg)
2
- [![CircleCI](https://circleci.com/gh/JuanCrg90/vpr.svg?style=svg)](https://circleci.com/gh/JuanCrg90/vpr)
2
+ ![CI](https://github.com/JuanCrg90/vpr/workflows/CI/badge.svg)
3
3
 
4
4
  # vpr
5
5
 
@@ -1,3 +1,3 @@
1
1
  module Vpr
2
- VERSION = "2.2.0"
2
+ VERSION = "2.2.1"
3
3
  end
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
30
30
  spec.add_development_dependency "rspec_junit_formatter", "~> 0.4"
31
31
  spec.add_development_dependency "standard"
32
32
 
33
- spec.add_runtime_dependency "git", "~> 1.5"
33
+ spec.add_runtime_dependency "git", "~> 1.7"
34
34
  spec.add_runtime_dependency "launchy", "~> 2.4"
35
35
  spec.add_runtime_dependency "thor", "~> 0.20"
36
36
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vpr
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 2.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Carlos Ruiz
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-03-16 00:00:00.000000000 Z
11
+ date: 2020-10-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -100,14 +100,14 @@ dependencies:
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: '1.5'
103
+ version: '1.7'
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: '1.5'
110
+ version: '1.7'
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: launchy
113
113
  requirement: !ruby/object:Gem::Requirement
@@ -144,7 +144,7 @@ executables:
144
144
  extensions: []
145
145
  extra_rdoc_files: []
146
146
  files:
147
- - ".circleci/config.yml"
147
+ - ".github/workflows/ci.yml"
148
148
  - ".github/workflows/standardrb.yml"
149
149
  - ".gitignore"
150
150
  - ".rspec"
@@ -1,54 +0,0 @@
1
- # Ruby CircleCI 2.0 configuration file
2
- #
3
- # Check https://circleci.com/docs/2.0/language-ruby/ for more details
4
- #
5
- version: 2
6
- jobs:
7
- build:
8
- docker:
9
- # specify the version you desire here
10
- - image: circleci/ruby:2.6.4
11
-
12
- working_directory: ~/repo
13
-
14
- steps:
15
- - checkout
16
-
17
- # Download and cache dependencies
18
- - restore_cache:
19
- keys:
20
- - v1-dependencies-{{ checksum "Gemfile.lock" }}
21
- # fallback to using the latest cache if no exact match is found
22
- - v1-dependencies-
23
-
24
- - run:
25
- name: install dependencies
26
- command: |
27
- gem install bundler
28
- bundle install --jobs=4 --retry=3 --path vendor/bundle
29
-
30
- - save_cache:
31
- paths:
32
- - ./vendor/bundle
33
- key: v1-dependencies-{{ checksum "Gemfile.lock" }}
34
-
35
- # run tests!
36
- - run:
37
- name: run tests
38
- command: |
39
- mkdir /tmp/test-results
40
- TEST_FILES="$(circleci tests glob "spec/**/*_spec.rb")"
41
-
42
- bundle exec rspec \
43
- --format progress \
44
- --format RspecJunitFormatter \
45
- --out /tmp/test-results/rspec.xml \
46
- --format progress \
47
- $TEST_FILES
48
-
49
- # collect reports
50
- - store_test_results:
51
- path: /tmp/test-results
52
- - store_artifacts:
53
- path: /tmp/test-results
54
- destination: test-results