rails_i18n_extended 0.1.3 → 0.1.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5cb26034602a59290e068729def78b2944d2963faacb18f162108d6c258052a3
4
- data.tar.gz: 3752b3fe15b4460ab036eba1ecb54f9492cef0ac7adde75beebee02fcf4d712b
3
+ metadata.gz: 492621264aadd05127f946c1cbf47388d3037965f692a115551e395d8eb7d2e8
4
+ data.tar.gz: 619a0c748b151c56e570d05969d954a00a808f25133d8f2dfb921ebe59797e29
5
5
  SHA512:
6
- metadata.gz: 1257d55e226ff56d2c31cfa3de33bf3f8af1df6db10f3610a18ea148150f9f56931acd2d0fce7df5d1a036c1f11391d1e67d6042af22f7cb4bc48d0d0ad360fa
7
- data.tar.gz: 1d0be4257ee048b8303d827582d4491c7f07405c6ce82ff71515bbccee74f28bdfcc76b262b4b748d36f77a635fc331b7a3d3fcf61205c378cd67ac38a22c17b
6
+ metadata.gz: fa5e1d4fb4116f43e5f44272276712493aef9512529a8410ac0487222b0412a9975a12b9e91bd966eb05cd27a70b446e214fab2758f55cbba444167415675f44
7
+ data.tar.gz: 1f789b644bf66167ec517f1c37e40b9e000275e27518775791a2cb5f1d2997c7633b667f3df218c87edf1181c5185f50701faf5a6e3775cf5910167c1e8f087b
@@ -0,0 +1,63 @@
1
+ version: 2.1
2
+ orbs:
3
+ ruby: circleci/ruby@0.1.2
4
+
5
+ jobs:
6
+ checkout_code:
7
+ docker:
8
+ - image: circleci/ruby:2.6.5-node-browsers
9
+ working_directory: ~/circleci-app
10
+ steps:
11
+ - checkout
12
+ - save_cache:
13
+ key: v1-repo-{{ .Environment.CIRCLE_SHA1 }}
14
+ paths:
15
+ - ~/circleci-app
16
+
17
+ bundle_dependencies:
18
+ docker:
19
+ - image: circleci/ruby:2.6.5-node-browsers
20
+ working_directory: ~/circleci-app
21
+ steps:
22
+ - restore_cache:
23
+ keys:
24
+ - v1-repo-{{ .Environment.CIRCLE_SHA1 }}
25
+ - restore_cache:
26
+ keys:
27
+ - v1-bundle-{{ checksum "Gemfile.lock" }}
28
+ - run: gem install bundler:2.0.2
29
+ - run: bundle install --path vendor/bundle
30
+ - save_cache:
31
+ key: v1-bundle-{{ checksum "Gemfile.lock" }}
32
+ paths:
33
+ - ~/circleci-app/vendor/bundle
34
+
35
+ test:
36
+ docker:
37
+ - image: circleci/ruby:2.6.5-node-browsers
38
+
39
+ working_directory: ~/circleci-app
40
+ steps:
41
+ - restore_cache:
42
+ keys:
43
+ - v1-repo-{{ .Environment.CIRCLE_SHA1 }}
44
+ - restore_cache:
45
+ keys:
46
+ - v1-bundle-{{ checksum "Gemfile.lock" }}
47
+ - run: gem install bundler:2.0.2
48
+ - run: bundle install --path vendor/bundle
49
+ - run: bundle exec rspec --color --require spec_helper --out ~/rspec/rspec.xml spec --format progress
50
+ - store_test_results:
51
+ path: ~/rspec
52
+
53
+ workflows:
54
+ version: 2
55
+ main:
56
+ jobs:
57
+ - checkout_code
58
+ - bundle_dependencies:
59
+ requires:
60
+ - checkout_code
61
+ - test:
62
+ requires:
63
+ - bundle_dependencies
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.6.5
data/CODEOWNERS ADDED
@@ -0,0 +1 @@
1
+ * @zog @EtienneDepaulis
data/Gemfile.lock CHANGED
@@ -1,19 +1,19 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_i18n_extended (0.1.3)
4
+ rails_i18n_extended (0.1.4)
5
5
  activerecord (>= 6)
6
6
  sqlite3
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activemodel (6.0.3)
12
- activesupport (= 6.0.3)
13
- activerecord (6.0.3)
14
- activemodel (= 6.0.3)
15
- activesupport (= 6.0.3)
16
- activesupport (6.0.3)
11
+ activemodel (6.0.3.1)
12
+ activesupport (= 6.0.3.1)
13
+ activerecord (6.0.3.1)
14
+ activemodel (= 6.0.3.1)
15
+ activesupport (= 6.0.3.1)
16
+ activesupport (6.0.3.1)
17
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
18
18
  i18n (>= 0.7, < 2)
19
19
  minitest (~> 5.1)
@@ -53,4 +53,4 @@ DEPENDENCIES
53
53
  rspec (~> 3.0)
54
54
 
55
55
  BUNDLED WITH
56
- 2.1.4
56
+ 2.0.2
@@ -1,3 +1,3 @@
1
1
  module RailsI18nExtended
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
@@ -3,8 +3,8 @@ require_relative 'lib/rails_i18n_extended/version'
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "rails_i18n_extended"
5
5
  spec.version = RailsI18nExtended::VERSION
6
- spec.authors = ["Johan VAN RYSEGHEM"]
7
- spec.email = ["johan@about-blank.fr"]
6
+ spec.authors = ["Johan VAN RYSEGHEM", "Etienne DEPAULIS"]
7
+ spec.email = ["johan@about-blank.fr", "Etienne.depaulis@gmail.com"]
8
8
 
9
9
  spec.summary = 'Add a few helpers for I18n in RoR'
10
10
  spec.description = %q{This gem adds helpers on ActiveRecord models to shorten the I18n.t calls. It also provides a fallback on the default locale, and a glocab default mechanism (see Readme for more infos)}
metadata CHANGED
@@ -1,10 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_i18n_extended
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Johan VAN RYSEGHEM
8
+ - Etienne DEPAULIS
8
9
  autorequire:
9
10
  bindir: exe
10
11
  cert_chain: []
@@ -43,13 +44,17 @@ description: This gem adds helpers on ActiveRecord models to shorten the I18n.t
43
44
  (see Readme for more infos)
44
45
  email:
45
46
  - johan@about-blank.fr
47
+ - Etienne.depaulis@gmail.com
46
48
  executables: []
47
49
  extensions: []
48
50
  extra_rdoc_files: []
49
51
  files:
52
+ - ".circleci/config.yml"
50
53
  - ".gitignore"
51
54
  - ".rspec"
55
+ - ".ruby-version"
52
56
  - ".travis.yml"
57
+ - CODEOWNERS
53
58
  - Gemfile
54
59
  - Gemfile.lock
55
60
  - LICENSE.txt
@@ -85,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
90
  - !ruby/object:Gem::Version
86
91
  version: '0'
87
92
  requirements: []
88
- rubygems_version: 3.1.2
93
+ rubygems_version: 3.0.3
89
94
  signing_key:
90
95
  specification_version: 4
91
96
  summary: Add a few helpers for I18n in RoR