rimless 1.6.0 → 1.7.0

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: 4eabd6c0d5bdd171ce8b754bbd37454bd1289f981ba3568bf58ada17e4eb91d7
4
- data.tar.gz: be7347e5abb58a8aa18b5ae198e7a36804f13a73905c733d36177a0fbe95fb69
3
+ metadata.gz: 15b76dcc6827cdc4422ab861345414ea7f9e8cb9023e3d490f711136ae3391d8
4
+ data.tar.gz: 7e832f6b36082968ee572f7bcdb0dfcb9cac5ebcd323a0fb1b7b4130dd28e414
5
5
  SHA512:
6
- metadata.gz: 82374943aa7b559372a7eb60eaabb644df4a872d3a4143273a1f0d56f1da490eec3c802a9e306914756fd71c58f57fe149e8f810eafdbc08d9c4d9776eb8ae2c
7
- data.tar.gz: 3af38794436c3fc86e735c88d7fac36690f75a4f702b4cddbcedb2fa55f2f1e66bfd8831e48798f4021b743da2834241324f66bb6415f08cf9ddf975d4866323
6
+ metadata.gz: d3a57e252f7c6d347c7e95ec3de76f7c04d879db239106a731b28b130f4b51c924f70d409b5698f0f7c4fe85bf5d75ac0b415661593a77b74e55e3117fbb7549
7
+ data.tar.gz: be60110c71e4244981b3efb0d92faaeae7b3cc7fa0e95e7102fd25fb589f6a89be8af230a27693d3f0ed13e3dc5f558f149ebf01803318b25eeaa5507286a2af
@@ -19,7 +19,7 @@ jobs:
19
19
  fail-fast: false
20
20
  matrix:
21
21
  ruby: ['2.7']
22
- rails: ['5.2']
22
+ rails: ['5.2', '6.1', '7.1']
23
23
  env:
24
24
  BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
25
25
  steps:
data/.gitignore CHANGED
@@ -6,6 +6,7 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ /log/
9
10
  /vendor/
10
11
  /gemfiles/vendor/
11
12
  /Gemfile.lock
data/Appraisals CHANGED
@@ -4,3 +4,13 @@ appraise 'rails-5.2' do
4
4
  gem 'activesupport', '~> 5.2.0'
5
5
  gem 'railties', '~> 5.2.0'
6
6
  end
7
+
8
+ appraise 'rails-6.1' do
9
+ gem 'activesupport', '~> 6.1.0'
10
+ gem 'railties', '~> 6.1.0'
11
+ end
12
+
13
+ appraise 'rails-7.1' do
14
+ gem 'activesupport', '~> 7.1.0'
15
+ gem 'railties', '~> 7.1.0'
16
+ end
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 1.7.0
6
+
7
+ * Added CI tests for Rails 6.1 and 7.1 (#39)
8
+
5
9
  ### 1.6.0
6
10
 
7
11
  * Dropped support for Ruby <2.7 (#38)
@@ -0,0 +1,24 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal", "~> 2.4"
6
+ gem "bundler", "~> 2.3"
7
+ gem "countless", "~> 1.1"
8
+ gem "factory_bot", "~> 6.2", "< 6.4.5"
9
+ gem "guard-rspec", "~> 4.7"
10
+ gem "railties", "~> 6.1.0"
11
+ gem "rake", "~> 13.0"
12
+ gem "redcarpet", "~> 3.5"
13
+ gem "rspec", "~> 3.12"
14
+ gem "rubocop", "~> 1.28"
15
+ gem "rubocop-rails", "~> 2.14"
16
+ gem "rubocop-rspec", "~> 2.10"
17
+ gem "simplecov", ">= 0.22"
18
+ gem "timecop", ">= 0.9.6"
19
+ gem "vcr", "~> 6.0"
20
+ gem "yard", ">= 0.9.28"
21
+ gem "yard-activesupport-concern", ">= 0.0.1"
22
+ gem "activesupport", "~> 6.1.0"
23
+
24
+ gemspec path: "../"
@@ -0,0 +1,24 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal", "~> 2.4"
6
+ gem "bundler", "~> 2.3"
7
+ gem "countless", "~> 1.1"
8
+ gem "factory_bot", "~> 6.2", "< 6.4.5"
9
+ gem "guard-rspec", "~> 4.7"
10
+ gem "railties", "~> 7.1.0"
11
+ gem "rake", "~> 13.0"
12
+ gem "redcarpet", "~> 3.5"
13
+ gem "rspec", "~> 3.12"
14
+ gem "rubocop", "~> 1.28"
15
+ gem "rubocop-rails", "~> 2.14"
16
+ gem "rubocop-rspec", "~> 2.10"
17
+ gem "simplecov", ">= 0.22"
18
+ gem "timecop", ">= 0.9.6"
19
+ gem "vcr", "~> 6.0"
20
+ gem "yard", ">= 0.9.28"
21
+ gem "yard-activesupport-concern", ">= 0.0.1"
22
+ gem "activesupport", "~> 7.1.0"
23
+
24
+ gemspec path: "../"
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Rimless
5
5
  # The version of the +rimless+ gem
6
- VERSION = '1.6.0'
6
+ VERSION = '1.7.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rimless
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-03 00:00:00.000000000 Z
11
+ date: 2024-07-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -216,6 +216,8 @@ files:
216
216
  - doc/kafka-playground/examples/rimless-produce
217
217
  - docker-compose.yml
218
218
  - gemfiles/rails_5.2.gemfile
219
+ - gemfiles/rails_6.1.gemfile
220
+ - gemfiles/rails_7.1.gemfile
219
221
  - lib/rimless.rb
220
222
  - lib/rimless/avro_helpers.rb
221
223
  - lib/rimless/avro_utils.rb
@@ -241,8 +243,6 @@ files:
241
243
  - lib/rimless/tasks/templates/custom_consumer_spec.rb
242
244
  - lib/rimless/tasks/templates/karafka.rb
243
245
  - lib/rimless/version.rb
244
- - log/development.log
245
- - log/make.log
246
246
  - rimless.gemspec
247
247
  homepage:
248
248
  licenses:
data/log/development.log DELETED
File without changes
data/log/make.log DELETED
@@ -1,6 +0,0 @@
1
- GNU Make 4.3
2
- Built for x86_64-pc-linux-gnu
3
- Copyright (C) 1988-2020 Free Software Foundation, Inc.
4
- License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
5
- This is free software: you are free to change and redistribute it.
6
- There is NO WARRANTY, to the extent permitted by law.