lite-archive 1.1.2 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/Gemfile.lock +1 -1
- data/lib/lite/archive/railtie.rb +1 -1
- data/lib/lite/archive/version.rb +1 -1
- data/{config → lib}/locales/en.yml +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bf3cdb58b65c9f3680ff20c9f72a495c7d06a4996b967a4597ebcdd5af121517
|
4
|
+
data.tar.gz: 9c26d266df7ff290be17677473d622cf16dffb83e6540baad3afa777afc2cb32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94ac1d89830d5de82ee38c1fc31f555f66ed5c6a9ac79ab6d2201ba52a503634ae3f6a5c0f909b02afa429a7d1110054ed2b81d4c310bfed881e565edd3459c8
|
7
|
+
data.tar.gz: 64d6d6106e0fab93ef7c1a290008a765cf0d688cf4d5a014d3952d2a1eb7a5bb90691accbb0bfd67e8ff5d84d49f3a1647bd12778a72967460b8feb8dfa36892
|
data/CHANGELOG.md
CHANGED
@@ -6,7 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
-
## [1.1.
|
9
|
+
## [1.1.3] - 2021-07-22
|
10
|
+
### Changed
|
11
|
+
- Move locales to lib
|
12
|
+
|
13
|
+
## [1.1.2] - 2021-07-22
|
10
14
|
### Changed
|
11
15
|
- Improved setup
|
12
16
|
|
data/Gemfile.lock
CHANGED
data/lib/lite/archive/railtie.rb
CHANGED
@@ -6,7 +6,7 @@ module Lite
|
|
6
6
|
|
7
7
|
initializer 'lite-archive.configure_locales' do |app|
|
8
8
|
Array(app.config.i18n.available_locales).each do |locale|
|
9
|
-
path = File.expand_path("
|
9
|
+
path = File.expand_path("../../../locales/#{locale}.yml", __FILE__)
|
10
10
|
next unless File.file?(path)
|
11
11
|
|
12
12
|
I18n.load_path << path
|
data/lib/lite/archive/version.rb
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lite-archive
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Gomez
|
@@ -228,7 +228,6 @@ files:
|
|
228
228
|
- _config.yml
|
229
229
|
- bin/console
|
230
230
|
- bin/setup
|
231
|
-
- config/locales/en.yml
|
232
231
|
- lib/generators/lite/archive/install_generator.rb
|
233
232
|
- lib/generators/lite/archive/templates/install.rb
|
234
233
|
- lib/lite/archive.rb
|
@@ -240,6 +239,7 @@ files:
|
|
240
239
|
- lib/lite/archive/scopes.rb
|
241
240
|
- lib/lite/archive/table_definition.rb
|
242
241
|
- lib/lite/archive/version.rb
|
242
|
+
- lib/locales/en.yml
|
243
243
|
- lite-archive.gemspec
|
244
244
|
homepage: http://drexed.github.io/lite-archive
|
245
245
|
licenses:
|