foodietest123 0.1.0 → 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: e1142803f31e06e584800e001a125aff59cc47f6c8c95526dec4935cad524277
4
- data.tar.gz: 601a2eafbf463be84d3289b268d1e30da5dee6b009f98b2881b4e560166c31a0
3
+ metadata.gz: 532f9759b28b5085306233ddbb3e2d92832cf82eb7b44a8275bc9b68d4ac2658
4
+ data.tar.gz: b26d8d4c1360ba8a0987b518dbc467b7a93512118f66c479248bba1e06d0c8f1
5
5
  SHA512:
6
- metadata.gz: e1131c4816ebbe09501561019107e6b0e7924a183b9fc3094b9bdc39798b6581ae93d4d4acc1b39ef161ae270cb37c25ed7e6a9d58954fdaa15d32cc30ed69b3
7
- data.tar.gz: 64f1368301cc59fb90110bb910c9dd6fdae53cdfd4f4f5761acbed0b1a41d4168e0ebefddbb97e25fb12d00c1d65c829a131c31185ec9866c4122f8630d39053
6
+ metadata.gz: 45ffc9ec05fc262708e96d2e5704718f6bae6b39e42d98971ac8dcebc6c4e80114f947b7ff67b16f7d1bdf25ef468f91bd893146e280630f335113e5ab904716
7
+ data.tar.gz: 20bd30ee96004a51dc0c7c348efdd2d06b406658679f0fbc2f72d6ceb074f068703907c6bf10384f5b3372d4852ef46932a429f4fc6ecb7717e8f8e37e6e0de2
data/bin/console CHANGED
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require "bundler/setup"
5
- require "foodie"
5
+ require "foodietest123"
6
6
 
7
7
  # You can add fixtures and/or initialization code here to make experimenting
8
8
  # with your gem easier. You can also use a different console, if you like.
@@ -0,0 +1,5 @@
1
+ {
2
+ "data": {
3
+ "hola": 12323
4
+ }
5
+ }
@@ -0,0 +1,15 @@
1
+ module Foodietest123
2
+ module Client
3
+ module Client2
4
+ module Client3
5
+ module Metrics
6
+ class Test
7
+ def hola
8
+ JSON.parse(File.read(File.expand_path(File.join(__dir__, '..', '..', '..', '..', '..', 'data', 'metric_units_catalog.json'))))
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Foodietest123
4
+ VERSION = "0.1.4"
5
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'json'
4
+ require_relative "foodietest123/version"
5
+ require_relative 'client/client2/client3/metrics/test'
6
+
7
+ module Foodietest123
8
+ class Test
9
+ def hola
10
+ JSON.parse(File.read(File.expand_path(File.join(__dir__, '..', 'data', 'metric_units_catalog.json'))))
11
+ end
12
+ end
13
+ class Error < StandardError; end
14
+ # Your code goes here...
15
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foodietest123
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - leonel gracia
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-17 00:00:00.000000000 Z
11
+ date: 2023-07-18 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Write a longer description or delete this line.
14
14
  email:
@@ -19,9 +19,10 @@ extra_rdoc_files: []
19
19
  files:
20
20
  - bin/console
21
21
  - bin/setup
22
- - lib/client/test.rb
23
- - lib/foodie.rb
24
- - lib/foodie/version.rb
22
+ - data/metric_units_catalog.json
23
+ - lib/client/client2/client3/metrics/test.rb
24
+ - lib/foodietest123.rb
25
+ - lib/foodietest123/version.rb
25
26
  homepage: https://rubygems.org/gems/foodie
26
27
  licenses:
27
28
  - MIT
@@ -29,7 +30,7 @@ metadata:
29
30
  allowed_push_host: https://rubygems.org
30
31
  homepage_uri: https://rubygems.org/gems/foodie
31
32
  source_code_uri: https://github.com/LGraciaBarraza/foodie
32
- post_install_message:
33
+ post_install_message:
33
34
  rdoc_options: []
34
35
  require_paths:
35
36
  - lib
@@ -44,8 +45,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
44
45
  - !ruby/object:Gem::Version
45
46
  version: '0'
46
47
  requirements: []
47
- rubygems_version: 3.4.10
48
- signing_key:
48
+ rubygems_version: 3.0.1
49
+ signing_key:
49
50
  specification_version: 4
50
51
  summary: te a short summary, because RubyGems requires one.
51
52
  test_files: []
data/lib/client/test.rb DELETED
@@ -1,9 +0,0 @@
1
- module Foodie
2
- module Client
3
- class Test
4
- def hola
5
- JSON.parse(File.expand_path(File.join(__dir__, 'data/metric_units_catalog.json')))
6
- end
7
- end
8
- end
9
- end
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Foodie
4
- VERSION = "0.1.0"
5
- end
data/lib/foodie.rb DELETED
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "foodie/version"
4
-
5
- module Foodie
6
- class Error < StandardError; end
7
- # Your code goes here...
8
- end