rspec_in_context 1.1.0 → 1.1.0.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: 1483e9b55b3cabffad15491bec3e5c3f006b421c4fa62099cce8effc4bf428b3
4
- data.tar.gz: 92e35ec980fa84397bb5b33f39e6302825c8ae60aaa581cc009befa507f9b98e
3
+ metadata.gz: ffe46e3cf41f69b6c43ba4a1ef3e6582a6b09edadbf23d09bda4e4532eac8ce2
4
+ data.tar.gz: eea652b3154c3843894184fbb2168cf181f2dddbd474b209aa6e330a144672b1
5
5
  SHA512:
6
- metadata.gz: 6f2b2c8e5a4f5b65692b73cb81558a4aaaed3797da5b3aded5b3dc1ff8e943d3968f68df69007d9d15864ca1d14b934f7c51a57fc2a48d6a2757ab63c494ba4f
7
- data.tar.gz: 6fd7be08a125054917af01ba365d34a2dcae63895f4aba95731e001dbd7fd757d4d617049e6f9d36ca576d817d35c543f76ae8fb10dc0172ff94bd2289e06217
6
+ metadata.gz: bf8e767db2af63f3a4f47abe2cdb2518bf9e5e1de8a67e7da11b4f82b3701e74b72763d5da29271a05e63e4f5ebf2a1e1c4960095ba5c6c8073fc787d7847a9a
7
+ data.tar.gz: f3a18c051527c777f7c5defd1880c047381f09c1609fc4941153d9a219a7afdfc5b6ebc4100c70f4cde85b2243ea924000047430e7688f3016d33ba39d57602e
@@ -18,8 +18,7 @@ jobs:
18
18
  uses: ruby/setup-ruby@v1
19
19
  with:
20
20
  ruby-version: ${{ matrix.ruby }}
21
- - name: Install dependencies
22
- run: bundle install
21
+ bundler-cache: true
23
22
  - name: Run linter
24
23
  run: bundle exec rubocop
25
24
  - name: Run tests
@@ -34,8 +33,7 @@ jobs:
34
33
  uses: ruby/setup-ruby@v1
35
34
  with:
36
35
  ruby-version: 3.0
37
- - name: Install dependencies
38
- run: bundle install
36
+ bundler-cache: true
39
37
  - name: Prepare credentials
40
38
  env:
41
39
  RUBYGEM_KEY: ${{ secrets.RUBYGEM_KEY }}
@@ -45,4 +43,4 @@ jobs:
45
43
  - name: Fetch tags from remote
46
44
  run: "git fetch -t"
47
45
  - name: Publish if version change
48
- run: 'git diff `git tag | tail -1` lib/rspec_in_context/version.rb | grep -E "^\+.*VERSION" && rake release || echo "No release for now"'
46
+ run: 'git diff `git tag | tail -1` -- lib/rspec_in_context/version.rb | grep -E "^\+.*VERSION" && rake release || echo "No release for now"'
@@ -18,8 +18,7 @@ jobs:
18
18
  uses: ruby/setup-ruby@v1
19
19
  with:
20
20
  ruby-version: ${{ matrix.ruby }}
21
- - name: Install dependencies
22
- run: bundle install
21
+ bundler-cache: true
23
22
  - name: Run linter
24
23
  run: bundle exec rubocop
25
24
  - name: Run tests
@@ -14,8 +14,8 @@ jobs:
14
14
  - name: Fetch main branch
15
15
  run: git fetch origin main:main
16
16
  - name: Verify if there's a change in version
17
- run: "git diff main lib/rspec_in_context/version.rb | grep VERSION"
17
+ run: "git diff main -- lib/rspec_in_context/version.rb | grep VERSION"
18
18
  - name: Print new version
19
- run: 'git diff main lib/rspec_in_context/version.rb | grep -E "^\+.*VERSION" | grep -E -o "[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?"'
19
+ run: 'git diff main -- lib/rspec_in_context/version.rb | grep -E "^\+.*VERSION" | grep -E -o "[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?"'
20
20
  - name: Verify if higher version
21
- run: '[[ $(git diff main lib/rspec_in_context/version.rb | grep -E "^\+.*VERSION" | grep -E -o "[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?") > $(git diff main lib/rspec_in_context/version.rb | grep -E "^-.*VERSION" | grep -E -o "[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?") ]]'
21
+ run: '[[ $(git diff main -- lib/rspec_in_context/version.rb | grep -E "^\+.*VERSION" | grep -E -o "[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?") > $(git diff main -- lib/rspec_in_context/version.rb | grep -E "^-.*VERSION" | grep -E -o "[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?") ]]'
data/.gitignore CHANGED
@@ -8,3 +8,4 @@
8
8
  /tmp/
9
9
 
10
10
  Gemfile.lock
11
+ vendor/cache
@@ -10,6 +10,7 @@ AllCops:
10
10
  DisplayCopNames: true
11
11
  Exclude:
12
12
  - 'bin/*'
13
+ - 'vendor/**/*'
13
14
 
14
15
  Metrics/BlockLength:
15
16
  Exclude:
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.0.0.1] - 2020-12-27
10
+ This is a release in order to test all type of actions
11
+
12
+ ### Added
13
+ - Cache support in github actions for ease of development
14
+
9
15
  ## [1.1.0] - 2020-12-27
10
16
  ### Added
11
17
  - **BREAKING** Option to silence in_context block. They used to always wrap themself into a context block with their name. This is not the case anymore. All in_context are silent unless explicitely declared as not.
@@ -15,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
21
  - Changelog
16
22
  - Support ruby 3.0
17
23
 
18
- [Unreleased]: https://github.com/zaratan/rspec_in_context/compare/v1.1.0...HEAD
24
+ [Unreleased]: https://github.com/zaratan/rspec_in_context/compare/v1.1.0.1...HEAD
25
+ [1.1.0.1]: https://github.com/zaratan/rspec_in_context/releases/tag/v1.1.0.1
19
26
  [1.1.0]: https://github.com/zaratan/rspec_in_context/releases/tag/v1.1.0
20
27
  [1.0.1.2]: https://github.com/zaratan/rspec_in_context/releases/tag/v1.0.1.2
@@ -2,5 +2,5 @@
2
2
 
3
3
  module RspecInContext
4
4
  # Version of the gem
5
- VERSION = "1.1.0"
5
+ VERSION = "1.1.0.1"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec_in_context
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Denis <Zaratan> Pasin