foodietest123 0.1.0 → 0.1.3

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: 3cc45e989e070ec59ee049c6a603e802b5c75791651edf70c4170551cfb98c9a
4
+ data.tar.gz: a74047df2139f5e3ff7a34657642f759c3bdbead070bca23896053163abe169c
5
5
  SHA512:
6
- metadata.gz: e1131c4816ebbe09501561019107e6b0e7924a183b9fc3094b9bdc39798b6581ae93d4d4acc1b39ef161ae270cb37c25ed7e6a9d58954fdaa15d32cc30ed69b3
7
- data.tar.gz: 64f1368301cc59fb90110bb910c9dd6fdae53cdfd4f4f5761acbed0b1a41d4168e0ebefddbb97e25fb12d00c1d65c829a131c31185ec9866c4122f8630d39053
6
+ metadata.gz: 18ee73d440688c6a86a17e6abbfa639cdf2a505c390b291b955bb79bea76de27af47bb1d634cb7caedd06c8c4f1d72bae71faffece1d2f26e7394c7ba568785c
7
+ data.tar.gz: 9398e46f7d657a8b7cfd7b6c16344dc52b73080a25800124f7c4c443b48e03598da2b70bdf2e985347e4d3a907a961e8107296a1f61ed36d21bea4f2a6cb8480
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,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.3"
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,11 +1,11 @@
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.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - leonel gracia
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
11
  date: 2023-07-17 00:00:00.000000000 Z
@@ -19,9 +19,9 @@ 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
+ - lib/client/client2/client3/metrics/test.rb
23
+ - lib/foodietest123.rb
24
+ - lib/foodietest123/version.rb
25
25
  homepage: https://rubygems.org/gems/foodie
26
26
  licenses:
27
27
  - MIT
@@ -29,7 +29,7 @@ metadata:
29
29
  allowed_push_host: https://rubygems.org
30
30
  homepage_uri: https://rubygems.org/gems/foodie
31
31
  source_code_uri: https://github.com/LGraciaBarraza/foodie
32
- post_install_message:
32
+ post_install_message:
33
33
  rdoc_options: []
34
34
  require_paths:
35
35
  - lib
@@ -44,8 +44,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
44
44
  - !ruby/object:Gem::Version
45
45
  version: '0'
46
46
  requirements: []
47
- rubygems_version: 3.4.10
48
- signing_key:
47
+ rubygems_version: 3.0.1
48
+ signing_key:
49
49
  specification_version: 4
50
50
  summary: te a short summary, because RubyGems requires one.
51
51
  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