symphonia 3.3.4 → 3.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/CHANGELOG.md +4 -0
- data/lib/symphonia/version.rb +1 -1
- data/spec/libs/some_lib_spec.rb +5 -0
- metadata +7 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 690d5654253b68fefb5088b8938130e37baf32e2ac3a533af0ded29909f66a01
|
|
4
|
+
data.tar.gz: 208b3dac35095799df42c565300f8c7877dad70a52ce966c6c7ad8e75048c710
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c23c2f1972886ac602da1fcd7fc0259b998a53787999bab18b7c320044b64a176a77227d20ec7d896868d74829464812f8a95a6910216e295f5b263dd65c3e65
|
|
7
|
+
data.tar.gz: caa04002e0307779c75a0542124e6ca09a76463fb27b23aec0aa079b81d0af0b8c8cfabed6541472bc146ac1c086087910196969b85c83251b7a865eb906e4fe
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
|
+
## [3.4.0] - 2021-03-22
|
|
9
|
+
### Changed
|
|
10
|
+
- upgrade authlogic to 6.4.1 (rails6.1 compatible)
|
|
11
|
+
|
|
8
12
|
## [3.3.4] - 2020-12-28
|
|
9
13
|
### Fixed
|
|
10
14
|
- default responses (render_40x) works for any format
|
data/lib/symphonia/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: symphonia
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lukas Pokorny
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-03-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -72,14 +72,14 @@ dependencies:
|
|
|
72
72
|
requirements:
|
|
73
73
|
- - "~>"
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 6.
|
|
75
|
+
version: 6.4.0
|
|
76
76
|
type: :runtime
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 6.
|
|
82
|
+
version: 6.4.0
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: scrypt
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -564,6 +564,7 @@ files:
|
|
|
564
564
|
- spec/helpers/symphonia/application_helper_spec.rb
|
|
565
565
|
- spec/helpers/symphonia/entity_decorator_spec.rb
|
|
566
566
|
- spec/helpers/symphonia/renderer_helper_spec.rb
|
|
567
|
+
- spec/libs/some_lib_spec.rb
|
|
567
568
|
- spec/mailers/previews/symphonia/notifier_preview.rb
|
|
568
569
|
- spec/mailers/symphonia/notifier_spec.rb
|
|
569
570
|
- spec/models/query/attribute_spec.rb
|
|
@@ -604,7 +605,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
604
605
|
- !ruby/object:Gem::Version
|
|
605
606
|
version: '0'
|
|
606
607
|
requirements: []
|
|
607
|
-
rubygems_version: 3.
|
|
608
|
+
rubygems_version: 3.0.6
|
|
608
609
|
signing_key:
|
|
609
610
|
specification_version: 4
|
|
610
611
|
summary: My administration
|
|
@@ -622,6 +623,7 @@ test_files:
|
|
|
622
623
|
- spec/requests/login_spec.rb
|
|
623
624
|
- spec/requests/accounts_spec.rb
|
|
624
625
|
- spec/requests/users_spec.rb
|
|
626
|
+
- spec/libs/some_lib_spec.rb
|
|
625
627
|
- spec/support/stub_users.rb
|
|
626
628
|
- spec/support/shared.rb
|
|
627
629
|
- spec/support/wait_for_ajax.rb
|