rimless 1.13.0 → 1.13.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: ada3a8021987b87e7f35539124ae5fe1da68d5354574b43a779ad09e3b83117e
4
- data.tar.gz: 54a4033b5db4d7f52f2127558e0fb0fe90aa07dbd77dad48b3b01bc24ca64651
3
+ metadata.gz: 6eb35e2d572f3eb52952d9ac03dc2e7993786de3253564ec5b844c38d1264712
4
+ data.tar.gz: 78c2e47987c5532fff9a94a085c331c4ab5e099a48036c05409a5fbe045b912a
5
5
  SHA512:
6
- metadata.gz: 51bf3e2daac95336b98bad54fea5352defdc47eac586c5cd161a17448cd78a66c701ad8df407f4b14556e216e2718824f146f227e7cd0934953549f06403b021
7
- data.tar.gz: f99b740018aabfd2429ddb3a0af4ea80610aed551da0faa0127690dc15b4cf17ee497c29fc354cfe620295505f1809e58e1ab05bae3ffa1c4914a636068300ef
6
+ metadata.gz: 0dc2c46cf524c8cbdc94169c9cbfb5a94f0b2978b0cfc6f2a2fd21cd62a24c16153377f61673dfb8232e949fc013d9d5dc6be9f28072c91c63fd7cb3518b4486
7
+ data.tar.gz: 02be6ad255728d181b5a097fa0050ff66772ca4957c08828f54d6b9cd39f5bd3ba8fa9b797b8a4902454fee52d7754853258df8bc5de90978262de5791f33910
data/.rubocop.yml CHANGED
@@ -1,7 +1,5 @@
1
- require:
2
- - rubocop-rspec
3
-
4
1
  plugins:
2
+ - rubocop-rspec
5
3
  - rubocop-rails
6
4
 
7
5
  Rails:
@@ -61,7 +59,7 @@ RSpec/NestedGroups:
61
59
  Max: 4
62
60
 
63
61
  # Disable regular Rails spec paths.
64
- RSpec/FilePath:
62
+ Rails/FilePath:
65
63
  Enabled: false
66
64
 
67
65
  # Because we just implemented the ActiveRecord API.
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 1.13.1 (11 March 2025)
6
+
7
+ * Upgraded the rubocop dependencies ([#53](https://github.com/hausgold/rimless/pull/53))
8
+ * Make sure to load 'rimless/railtie' when we initialize Rails on the consumer
9
+ application ([#54](https://github.com/hausgold/rimless/pull/54))
10
+
5
11
  ### 1.13.0 (27 February 2025)
6
12
 
7
13
  * Added support for Sidekiq 7 in conjunction with Rails ([#52](https://github.com/hausgold/rimless/pull/52))
data/Gemfile CHANGED
@@ -17,9 +17,9 @@ gem 'railties', '>= 6.1'
17
17
  gem 'rake', '~> 13.0'
18
18
  gem 'redcarpet', '~> 3.5'
19
19
  gem 'rspec', '~> 3.12'
20
- gem 'rubocop', '~> 1.28'
21
- gem 'rubocop-rails', '~> 2.14'
22
- gem 'rubocop-rspec', '~> 2.10'
20
+ gem 'rubocop'
21
+ gem 'rubocop-rails'
22
+ gem 'rubocop-rspec'
23
23
  gem 'simplecov', '>= 0.22'
24
24
  gem 'timecop', '>= 0.9.6'
25
25
  gem 'vcr', '~> 6.0'
@@ -11,9 +11,9 @@ gem "railties", "~> 6.1.0"
11
11
  gem "rake", "~> 13.0"
12
12
  gem "redcarpet", "~> 3.5"
13
13
  gem "rspec", "~> 3.12"
14
- gem "rubocop", "~> 1.28"
15
- gem "rubocop-rails", "~> 2.14"
16
- gem "rubocop-rspec", "~> 2.10"
14
+ gem "rubocop"
15
+ gem "rubocop-rails"
16
+ gem "rubocop-rspec"
17
17
  gem "simplecov", ">= 0.22"
18
18
  gem "timecop", ">= 0.9.6"
19
19
  gem "vcr", "~> 6.0"
@@ -11,9 +11,9 @@ gem "railties", "~> 7.1.0"
11
11
  gem "rake", "~> 13.0"
12
12
  gem "redcarpet", "~> 3.5"
13
13
  gem "rspec", "~> 3.12"
14
- gem "rubocop", "~> 1.28"
15
- gem "rubocop-rails", "~> 2.14"
16
- gem "rubocop-rspec", "~> 2.10"
14
+ gem "rubocop"
15
+ gem "rubocop-rails"
16
+ gem "rubocop-rspec"
17
17
  gem "simplecov", ">= 0.22"
18
18
  gem "timecop", ">= 0.9.6"
19
19
  gem "vcr", "~> 6.0"
@@ -59,6 +59,7 @@ module Rimless
59
59
  require 'sidekiq/rails'
60
60
 
61
61
  require rails_env
62
+ require 'rimless/rails'
62
63
  Rails.application.eager_load!
63
64
  end
64
65
 
@@ -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.13.0'
6
+ VERSION = '1.13.1'
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.13.0
4
+ version: 1.13.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-02-27 00:00:00.000000000 Z
11
+ date: 2025-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport