stones 1.3.2 → 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: 156b6db169af46271b356f1cec861b586e205e868492b15baf3816447cc764b0
4
- data.tar.gz: 6ae80a608b61e502b465632890b47a5e713cba56157bb3ff106d59e985926924
3
+ metadata.gz: 7fe81d56b7136cf16257a0b65cdc824ae82fe3a0a3629c71d2fc2b90a0352aa4
4
+ data.tar.gz: c1896708e566fb30745c19136fba3151ea8391662056d970d02cceae9dea21ca
5
5
  SHA512:
6
- metadata.gz: a4e4cde22242ace2fbc5f4f3872c2a323e8e13d383d6cf3e4403248bbbce08ddad87aff221c0cf2a6f7364bb7573e2e41550aabbaeca1160318b49a1c80bc68e
7
- data.tar.gz: 216f3ad964464ef34fed31c8d80aa64a714e3742da6e05e66a156d80e1c6f31f5edd738f3ba533532a1eee8fa16b9ad7bb1f1829edaefcc80ff7445ebc0f693c
6
+ metadata.gz: da5fb0c33b77ea9f2f805430c2edee3e186e706bf2fe74d77dfb65efa50dbb4b0d6456a56d8831bb0171c91a51a720b0a3336019836465d9b1789e8464cacb5c
7
+ data.tar.gz: 994d966065c5b0fbf0f65a16feec1624b559955afb6f17ef5fa4c44e0501612c7a39ded32aa75739182b5b3978e3d31591d30832966ce09c9b72af89202ba826
@@ -1,7 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stones
4
- VERSION = "1.3.2" # 2025-06-20
4
+ VERSION = "1.4.0" # 2025-11-03
5
+ # VERSION = "1.3.3" # 2025-10-30
6
+ # VERSION = "1.3.2" # 2025-06-20
5
7
  # VERSION = "1.3.1" # 2024-10-21
6
8
  # VERSION = "1.3.0" # 2024-04-20
7
9
  # VERSION = "1.2.4" # 2023-12-13
@@ -1,7 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stones
4
- VERSION = "1.3.1" # 2024-10-21
4
+ VERSION = "1.3.3" # 2025-10-30
5
+ # VERSION = "1.3.2" # 2025-06-20
6
+ # VERSION = "1.3.1" # 2024-10-21
5
7
  # VERSION = "1.3.0" # 2024-04-20
6
8
  # VERSION = "1.2.4" # 2023-12-13
7
9
  # VERSION = "1.2.3" # 2023-07-19
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.2
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
@@ -102,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
102
101
  - !ruby/object:Gem::Version
103
102
  version: '0'
104
103
  requirements: []
105
- rubygems_version: 3.6.7
104
+ rubygems_version: 3.6.9
106
105
  specification_version: 4
107
106
  summary: Stones contains some basic files.
108
107
  test_files: []
@@ -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