rails_i18n_manager 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/config/rails_i18n_manager_manifest.rb +3 -0
- data/app/models/rails_i18n_manager/application_record.rb +1 -1
- data/lib/rails_i18n_manager/engine.rb +21 -21
- data/lib/rails_i18n_manager/version.rb +1 -1
- metadata +7 -6
- /data/{public → app/assets/images}/rails_i18n_manager/favicon.ico +0 -0
- /data/{public → app/assets/javascripts}/rails_i18n_manager/application.js +0 -0
- /data/{public → app/assets/stylesheets}/rails_i18n_manager/application.css +0 -0
- /data/{public → app/assets/stylesheets}/rails_i18n_manager/utility.css +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8f237f3945385f864800ae205e29a56db0968035bf0121e0efbf24e890b924b
|
4
|
+
data.tar.gz: c000f125974eb73ecadde8ef9d14e6dcc9bb031145d1c693e02dc60c9d564fdb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 227ab42ce4c3ef87b9325f2570607f9beb4db7a66073f60adfb753623337394e7ddea82d221cfa9e74481f69d259321e2ef1e89de56fcb4e916f5e67de78c779
|
7
|
+
data.tar.gz: a02b2383a8495a14bd25a4b5a48eafb8fff08b3dd161a75f4d999b383f7a08a28b0e00ea3f6ade4d08c5382be72836aca53caa17fe1a07fc67e14ca813c2ffd8
|
@@ -17,27 +17,27 @@ module RailsI18nManager
|
|
17
17
|
app.middleware.use ::ActionDispatch::Static, "#{root}/public"
|
18
18
|
end
|
19
19
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
20
|
+
initializer "rails_i18n_manager.assets.precompile" do |app|
|
21
|
+
# this initializer is only called when sprockets is in use
|
22
|
+
|
23
|
+
app.config.assets.precompile << "rails_i18n_manager_manifest.js" ### manifest file required
|
24
|
+
app.config.assets.precompile << "rails_i18n_manager/favicon.ico"
|
25
|
+
|
26
|
+
### Automatically precompile assets in specified folders
|
27
|
+
["app/assets/images/"].each do |folder|
|
28
|
+
dir = app.root.join(folder)
|
29
|
+
|
30
|
+
if Dir.exist?(dir)
|
31
|
+
Dir.glob(File.join(dir, "**/*")).each do |f|
|
32
|
+
asset_name = f.to_s
|
33
|
+
.split(folder).last # Remove fullpath
|
34
|
+
.sub(/^\/*/, '') ### Remove leading '/'
|
35
|
+
|
36
|
+
app.config.assets.precompile << asset_name
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
41
|
|
42
42
|
end
|
43
43
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_i18n_manager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Weston Ganger
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -220,6 +220,11 @@ files:
|
|
220
220
|
- LICENSE
|
221
221
|
- README.md
|
222
222
|
- Rakefile
|
223
|
+
- app/assets/config/rails_i18n_manager_manifest.rb
|
224
|
+
- app/assets/images/rails_i18n_manager/favicon.ico
|
225
|
+
- app/assets/javascripts/rails_i18n_manager/application.js
|
226
|
+
- app/assets/stylesheets/rails_i18n_manager/application.css
|
227
|
+
- app/assets/stylesheets/rails_i18n_manager/utility.css
|
223
228
|
- app/controllers/rails_i18n_manager/application_controller.rb
|
224
229
|
- app/controllers/rails_i18n_manager/translation_apps_controller.rb
|
225
230
|
- app/controllers/rails_i18n_manager/translations_controller.rb
|
@@ -265,10 +270,6 @@ files:
|
|
265
270
|
- lib/rails_i18n_manager/config.rb
|
266
271
|
- lib/rails_i18n_manager/engine.rb
|
267
272
|
- lib/rails_i18n_manager/version.rb
|
268
|
-
- public/rails_i18n_manager/application.css
|
269
|
-
- public/rails_i18n_manager/application.js
|
270
|
-
- public/rails_i18n_manager/favicon.ico
|
271
|
-
- public/rails_i18n_manager/utility.css
|
272
273
|
homepage: https://github.com/westonganger/rails_i18n_manager
|
273
274
|
licenses:
|
274
275
|
- MIT
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|