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 +4 -4
- data/lib/stones/version.rb +3 -1
- data/lib/stones/version.rb.bak +3 -1
- metadata +2 -3
- data/config/initializers/concerns.rb +0 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7fe81d56b7136cf16257a0b65cdc824ae82fe3a0a3629c71d2fc2b90a0352aa4
|
|
4
|
+
data.tar.gz: c1896708e566fb30745c19136fba3151ea8391662056d970d02cceae9dea21ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da5fb0c33b77ea9f2f805430c2edee3e186e706bf2fe74d77dfb65efa50dbb4b0d6456a56d8831bb0171c91a51a720b0a3336019836465d9b1789e8464cacb5c
|
|
7
|
+
data.tar.gz: 994d966065c5b0fbf0f65a16feec1624b559955afb6f17ef5fa4c44e0501612c7a39ded32aa75739182b5b3978e3d31591d30832966ce09c9b72af89202ba826
|
data/lib/stones/version.rb
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
module Stones
|
|
4
|
-
VERSION = "1.
|
|
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
|
data/lib/stones/version.rb.bak
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
module Stones
|
|
4
|
-
VERSION = "1.3.
|
|
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.
|
|
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.
|
|
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
|