knapsack_pro 1.16.0 → 1.16.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: 19a2cee7a78789810cdeca8df09ab0ebce2141cc4682c8a58fb8db4c5c7fafe2
4
- data.tar.gz: 2fd92dbf8190a930ef46b84d96b94e680f0d36dbd6353a85535bcb88488cdce3
3
+ metadata.gz: 403fc1f02aa184feb3f96f63dc497e1c2f18c643445858a602fe2166b71648d3
4
+ data.tar.gz: 18eed679354d95f210d98bc96241a0709214463ffe5d76d52c73001f3e911574
5
5
  SHA512:
6
- metadata.gz: bbe18332a829d8af9a1dccc3717a7868fc5dad3c64c66320019ade8278689d1080380ece596788917ae31b5afb516a6109b2f5db7ef5e202bfbb909bb485367c
7
- data.tar.gz: d5d5a6877d2f29f067eadfb711bd1504bff3fcba172d13840f60c8b7dbf7ba9c17b9d33f82b265626a59f8211da2cbc3c820755c9acb464e471ae98490e8751e
6
+ metadata.gz: 3fc1cc61b52ed7aa617fa9d5340fc308f3a5e5fd730fd7e512f943a7e3f91caee8e566e3dadcc329070019b21f07fd19a0713f8a544b0ff1098da1b3322546e2
7
+ data.tar.gz: 10c34132207e7651840f59a111048d8df9e24336d7b29bf44f198f12405990604104acdd936544dbeb99cd1eab07dc3764db4c91aa9a16ded274e3218e1320e5
data/.circleci/config.yml CHANGED
@@ -8,7 +8,7 @@ jobs:
8
8
  parallelism: 1
9
9
  docker:
10
10
  # specify the version you desire here
11
- - image: circleci/ruby:2.6.5
11
+ - image: circleci/ruby:2.7.0
12
12
  environment:
13
13
  CODECLIMATE_REPO_TOKEN: b6626e682a8e97e0c5978febc92c3526792a2d018b41b8e1b52689da37fb7d92
14
14
 
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Change Log
2
2
 
3
+ ### 1.16.1
4
+
5
+ * Allow to use Queue Mode for old RSpec versions that don't have `RSpec.configuration.reset_filters` method
6
+
7
+ https://github.com/KnapsackPro/knapsack_pro-ruby/pull/96
8
+
9
+ https://github.com/KnapsackPro/knapsack_pro-ruby/compare/v1.16.0...v1.16.1
10
+
3
11
  ### 1.16.0
4
12
 
5
13
  * Add test runner name to `KNAPSACK-PRO-CLIENT-NAME` header send to Knapsack Pro API
data/README.md CHANGED
@@ -1504,7 +1504,14 @@ jobs:
1504
1504
  - name: Set up Ruby 2.6
1505
1505
  uses: actions/setup-ruby@v1
1506
1506
  with:
1507
- ruby-version: 2.6.3
1507
+ ruby-version: 2.6.5
1508
+
1509
+ - uses: actions/cache@v1
1510
+ with:
1511
+ path: vendor/bundle
1512
+ key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
1513
+ restore-keys: |
1514
+ ${{ runner.os }}-gems-
1508
1515
 
1509
1516
  # required to compile pg ruby gem
1510
1517
  - name: install PostgreSQL client
@@ -1520,6 +1527,7 @@ jobs:
1520
1527
  RAILS_ENV: test
1521
1528
  run: |
1522
1529
  gem install bundler
1530
+ bundle config path vendor/bundle
1523
1531
  bundle install --jobs 4 --retry 3
1524
1532
  bin/rails db:setup
1525
1533
 
@@ -131,7 +131,11 @@ module KnapsackPro
131
131
  end
132
132
  RSpec.world.example_groups.clear
133
133
  RSpec.configuration.start_time = ::RSpec::Core::Time.now
134
- RSpec.configuration.reset_filters
134
+
135
+ # skip reset filters for old RSpec versions
136
+ if RSpec.configuration.respond_to?(:reset_filters)
137
+ RSpec.configuration.reset_filters
138
+ end
135
139
  end
136
140
  end
137
141
  end
@@ -1,3 +1,3 @@
1
1
  module KnapsackPro
2
- VERSION = '1.16.0'
2
+ VERSION = '1.16.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knapsack_pro
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0
4
+ version: 1.16.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ArturT
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-14 00:00:00.000000000 Z
11
+ date: 2020-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake