constantinopolis 0.3.0 → 0.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 +5 -5
- data/lib/constantinopolis/rails_reloader.rb +2 -0
- data/lib/constantinopolis/version.rb +1 -1
- metadata +6 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: af26277c62738a2b83ed8983c7d2ea627970f6b539a67b6703357e27dfabf096
|
|
4
|
+
data.tar.gz: 6baab655c0c6d01b6908aaf40abe627712df4dcef5249d4c354f666444ac105e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac8c8f350fed7bc35341aa04f428a629d992fb1fde5b927664c899d23b3bc60579ddc21d751011e42b6a5855ebcca1015927e8b300dd36be9837b92980d061ec
|
|
7
|
+
data.tar.gz: bd2e9b149506889fd1e10ad6dfb2eefb21f2bf971a71159dbf4dcd467493311b51c55e9eb35fd31b63c39795755732f67e7c08ca4c33bcd16791245b1858d8ee
|
|
@@ -19,6 +19,7 @@ module Constantinopolis
|
|
|
19
19
|
case Rails.version[0]
|
|
20
20
|
when '4' then ActiveSupport::FileUpdateChecker
|
|
21
21
|
when '5' then Rails.application.config.file_watcher || ActiveSupport::FileUpdateChecker
|
|
22
|
+
when '6' then Rails.application.config.file_watcher || ActiveSupport::FileUpdateChecker
|
|
22
23
|
else raise 'Unsupported rails version!'
|
|
23
24
|
end
|
|
24
25
|
end
|
|
@@ -27,6 +28,7 @@ module Constantinopolis
|
|
|
27
28
|
case Rails.version[0]
|
|
28
29
|
when '4' then ActionDispatch::Reloader
|
|
29
30
|
when '5' then ActiveSupport::Reloader
|
|
31
|
+
when '6' then ActiveSupport::Reloader
|
|
30
32
|
else raise 'Unsupported rails version!'
|
|
31
33
|
end
|
|
32
34
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: constantinopolis
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- itmammoth
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-03-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -124,7 +124,7 @@ homepage: https://github.com/itmammoth/constantinopolis
|
|
|
124
124
|
licenses:
|
|
125
125
|
- MIT
|
|
126
126
|
metadata: {}
|
|
127
|
-
post_install_message:
|
|
127
|
+
post_install_message:
|
|
128
128
|
rdoc_options: []
|
|
129
129
|
require_paths:
|
|
130
130
|
- lib
|
|
@@ -139,9 +139,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
139
139
|
- !ruby/object:Gem::Version
|
|
140
140
|
version: '0'
|
|
141
141
|
requirements: []
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
signing_key:
|
|
142
|
+
rubygems_version: 3.2.15
|
|
143
|
+
signing_key:
|
|
145
144
|
specification_version: 4
|
|
146
145
|
summary: Setting constants solution for ruby applications.
|
|
147
146
|
test_files:
|