fractual_i18n 0.2.1 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8e5aacd2276257d9ccac2eb87d145339f126774386b4f45a93451f95c58a8ebc
4
- data.tar.gz: b790fcb59a1ee52037211e06ff22e8a99aad687e54e93be11a004045b7dfb058
3
+ metadata.gz: 61b5bcaad9cfc4984d930e69992ba1085a57c51a5ad98f064c169cfdb47cf1f9
4
+ data.tar.gz: 5b0ad574d7549de238c041888605b01f7a516c9036e42a12621918c426e6fbe9
5
5
  SHA512:
6
- metadata.gz: a9c5b7a959d7c8106a92b0d50351932820be199890d108ec6262a0c83a7b989549f8ef0c6357f9df1e0f212a19500b5e09c81de77527a2342f6eca0ca35cf6ca
7
- data.tar.gz: dbe0286b03399991829a565a114c1e580ea8def9aefef1ad40c1dd207147f0141cef181db73e7a1bc900df791aeabc8a551dd9e070ef2bf6628d963df92f2100
6
+ metadata.gz: 83b4938ae768d3c6f7e0903381c56a21125816b236eca4be5b8fc55354bff469fc1786e84d8b0e789e90e2517f2140decb56bbf4a227ddf71f16f04973973496
7
+ data.tar.gz: 6ec6aecd511b2f64cda8bc322698428e89b4819619595067e6d8d162872a239440c0082368fe8e0adc7b22b791490cfbb73873b94a0171a76a186e21a64cdaf5
data/Gemfile.lock CHANGED
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fractual_i18n (0.2.1)
4
+ fractual_i18n (0.3.0)
5
5
  i18n
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- concurrent-ruby (1.1.8)
11
- i18n (1.8.10)
10
+ concurrent-ruby (1.1.9)
11
+ i18n (1.8.11)
12
12
  concurrent-ruby (~> 1.0)
13
13
  minitest (5.14.4)
14
14
  rake (12.3.3)
@@ -22,4 +22,4 @@ DEPENDENCIES
22
22
  rake (~> 12.0)
23
23
 
24
24
  BUNDLED WITH
25
- 2.2.16
25
+ 2.2.32
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module FractualI18n::Backend
2
4
  def load_yml(filename)
3
5
  if (fractual_path = FractualI18n.configuration.fractual_paths.find { |path| filename.starts_with?(path) })
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class FractualI18n::Configuration
2
4
  attr_accessor :available_locales, :fractual_paths
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class FractualI18n::Phrases
2
4
  def joined(locale:)
3
5
  original_load_path = I18n.load_path
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "rails/railtie"
2
4
 
3
5
  class FractualI18n::Railtie < Rails::Railtie
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module FractualI18n
2
- VERSION = "0.2.1"
4
+ VERSION = "0.3.0"
3
5
  end
data/lib/fractual_i18n.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "i18n"
2
4
  require "fractual_i18n/version"
3
5
  require "fractual_i18n/configuration"
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  namespace :fractual_i18n do
2
4
  desc "Export view translations to single file"
3
5
  task :export, [:to] => :environment do |_task, args|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fractual_i18n
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Sęk
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2021-04-22 00:00:00.000000000 Z
12
+ date: 2021-12-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: i18n
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.16
72
+ rubygems_version: 3.2.32
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Supports loading translation files from views folder