stones 1.3.3 → 1.4.0

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: 4b556a2be73fe7cd36f17611c98938f15328b169eabc5bc74687fc36d26f0e5c
4
- data.tar.gz: 3676b1d95411092f31be95090ef9c5c6abfc7cc302acc0c6eac1f02aeb90cf1c
3
+ metadata.gz: 7fe81d56b7136cf16257a0b65cdc824ae82fe3a0a3629c71d2fc2b90a0352aa4
4
+ data.tar.gz: c1896708e566fb30745c19136fba3151ea8391662056d970d02cceae9dea21ca
5
5
  SHA512:
6
- metadata.gz: 7831bc752e0af6f72b899e428669a1dd3b803c362c5b0b6d9b6429a5be54dd846a56e3152da41f05b9ebf747dcdeb1ec0197cf9c2a40fcdc96615346015b9737
7
- data.tar.gz: 66148f006b3b8701b7833ec6a8351dab0d4948e16ac1951cc65ac05b9d24f151efa0de9e4a1d9cca3cd1580d8c17c6410fec0696203fcf25c45a6e7318dacd29
6
+ metadata.gz: da5fb0c33b77ea9f2f805430c2edee3e186e706bf2fe74d77dfb65efa50dbb4b0d6456a56d8831bb0171c91a51a720b0a3336019836465d9b1789e8464cacb5c
7
+ data.tar.gz: 994d966065c5b0fbf0f65a16feec1624b559955afb6f17ef5fa4c44e0501612c7a39ded32aa75739182b5b3978e3d31591d30832966ce09c9b72af89202ba826
@@ -1,7 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stones
4
- VERSION = "1.3.3" # 2025-10-30
4
+ VERSION = "1.4.0" # 2025-11-03
5
+ # VERSION = "1.3.3" # 2025-10-30
5
6
  # VERSION = "1.3.2" # 2025-06-20
6
7
  # VERSION = "1.3.1" # 2024-10-21
7
8
  # VERSION = "1.3.0" # 2024-04-20
@@ -1,7 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stones
4
- VERSION = "1.3.2" # 2025-06-20
4
+ VERSION = "1.3.3" # 2025-10-30
5
+ # VERSION = "1.3.2" # 2025-06-20
5
6
  # VERSION = "1.3.1" # 2024-10-21
6
7
  # VERSION = "1.3.0" # 2024-04-20
7
8
  # VERSION = "1.2.4" # 2023-12-13
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stones
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.3
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dittmar Krall
@@ -79,7 +79,6 @@ files:
79
79
  - app/views/layouts/application.html.erb
80
80
  - app/views/root/about.slim
81
81
  - app/views/shared/_error_explanation.html.erb
82
- - config/initializers/concerns.rb
83
82
  - lib/stones.rb
84
83
  - lib/stones/engine.rb
85
84
  - lib/stones/version.rb
@@ -1,15 +0,0 @@
1
- class << ActiveRecord::Base
2
- def concerned_with(*concerns)
3
- concerns.each do |concern|
4
- require_dependency "#{name.underscore}/#{concern}"
5
- end
6
- end
7
- end
8
-
9
- class << ActionController::Base
10
- def concerned_with(*concerns)
11
- concerns.each do |concern|
12
- require_dependency "#{name.underscore}/#{concern}"
13
- end
14
- end
15
- end