graphql_authorize 0.4.0 → 0.4.1

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: 41357f059b9d65f48c30b401062ec626c961edab225049c1ef92e474df2fea31
4
- data.tar.gz: b051cfc4469d002d251ebc1a650365143db03bc51262ce6d4a1a253578df760f
3
+ metadata.gz: 188c1afb13f8a959e34223950a39615ece38eda7f13b18f5dafd830fd23b74f1
4
+ data.tar.gz: bf010692e58828993f8940172a24d188f35814b6a060f16f0f40c30dee1e2372
5
5
  SHA512:
6
- metadata.gz: aae805c749a921ae201dc2e3d6d89e2c628a29b066d2b89964c16a6ff2f06bfa402cd37454c39bcd4ef8ed0dbe8a4c4431a795af9f71f7fda75b3b6680539d53
7
- data.tar.gz: 9c8404047d9ea389ef0d3da565cdac4540b6c26a1d2184e1dd4437a08f22fe345a1bd31c89b4dde48aa3eec60097506e73aec1c527bfc9cceece7d519d613af7
6
+ metadata.gz: 65db850b84f59e12a3d6209507b3cd33ef2a1c761d339b391df582783d061a241d461ec42c8b07afeebc8a9e52ee67ab64885b5df9062c2d6e8b6567b955e49c
7
+ data.tar.gz: 2d33ae8dba326e7a49d5fcdc2578fdb03acc4337287359c796687fdb081f45e4c97f6f493162c5c0bd6e1d04b61161de2ae91f2f88d62c5316a850f8fbeefeb1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- graphql_authorize (0.4.0)
4
+ graphql_authorize (0.4.1)
5
5
  graphql (>= 1.6)
6
6
  i18n (~> 1.1)
7
7
 
@@ -27,8 +27,11 @@ module GraphqlAuthorize
27
27
  end
28
28
  end
29
29
 
30
- # Default, if not specified, is :en
31
- I18n.load_path << Dir[File.expand_path("config/locales") + "/*.yml"]
30
+ puts "==="
31
+ puts Dir[File.expand_path(__dir__ + "/../config/locales/*.yml")].inspect
32
+ puts "==="
33
+
34
+ I18n.load_path += Dir[File.expand_path(__dir__ + "/../config/locales/*.yml")]
32
35
 
33
36
  GraphQL::Field.include(GraphqlAuthorize::Field)
34
37
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GraphqlAuthorize
4
- VERSION = "0.4.0"
4
+ VERSION = "0.4.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphql_authorize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - DmitryTsepelev