ecoportal-api-graphql 0.1.5 → 0.1.6

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: b4546feadd8f75c4df5ee12df6c7777a1e6e149a39df1e0dd774ea9453d52aa2
4
- data.tar.gz: 2833d0fafea1d9d5ef7bbdf0812c00578d470ebd1cb126918e7b7a29e33643e4
3
+ metadata.gz: 7c0e5dcda795491dd4687054d51f9b3888f707f320ed079742c54cbde74464ad
4
+ data.tar.gz: ab434f8f1f410692b0ac8f4a3cd549293045e17e469b2b09a14c1fbe85123f06
5
5
  SHA512:
6
- metadata.gz: 952bda5933f5e5c0d7b746f627aae46af22d011b58fd3e0c81615141deb4a487926bb6ba829d594b7b1987f5f4bc35aa17084401a9ab88f7cff5f470b38193df
7
- data.tar.gz: abd9299ae5f9a915e7fbe372aeeffe30ae6e6132df7d65a880529b6037a5c2d249e19c7e5f982dedd867f8100dd95825f5c87cdc460663232bf49b16dac3921a
6
+ metadata.gz: f3d127b631c0c567cd7831d5e1cda50f5474e1d4c262716e000aa324045b2fc228452ed2d968b620b9b58c43000b4526af5d2916e525b81af2c12999e23a00bd
7
+ data.tar.gz: 5c86f610a220829e975bef5ff3e459801247a7cda07368dafc2fc2278b81aed8f2535b187b6ee8682d61bc15bfb23ea84c048dac6df48c219d6f4ccb5fff84bd
data/CHANGELOG.md CHANGED
@@ -1,12 +1,10 @@
1
1
  # Change Log
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
- ## [0.1.6] - 2022-09-xx
4
+ ## [0.1.7] - 2022-09-xx
5
5
 
6
6
  ### Added
7
-
8
7
  ### Changed
9
-
10
8
  ### Fixed
11
9
 
12
10
  ### ToDo
@@ -16,6 +14,11 @@ All notable changes to this project will be documented in this file.
16
14
  - Analyse how to "DSL" currentOrganization.action.activities
17
15
  - review `path` tracking
18
16
 
17
+ ## [0.1.6] - 2022-09-19
18
+
19
+ ### Fixed
20
+ - Call to **private** method `remove_const` in `Ecoportal::API::GraphQL::Fragment#define`
21
+
19
22
  ## [0.1.5] - 2022-09-19
20
23
 
21
24
  ### Added
@@ -27,7 +27,7 @@ module Ecoportal
27
27
  end
28
28
 
29
29
  def define(sym, heredoc, namespace: ::Fragment)
30
- namespace.remove_const(sym) if namespace.const?(sym)
30
+ namespace.send(:remove_const, sym) if namespace.const?(sym)
31
31
  client.parse(heredoc).tap do |fragment|
32
32
  namespace.const_set(sym, fragment)
33
33
  ::Fragment.const_set(sym, fragment) unless namespace == ::Fragment
@@ -1,5 +1,5 @@
1
1
  module Ecoportal
2
2
  module API
3
- GRAPQL_VERSION = "0.1.5"
3
+ GRAPQL_VERSION = "0.1.6"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ecoportal-api-graphql
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oscar Segura