sila-ruby 0.0.22 → 0.0.23

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: 6eb85f841b9b9f5c9bb6b3a08b5c0357ae42a867fe7ecaa66863eb859112b1d6
4
- data.tar.gz: e62ca98a42e0d4fcaff66c3321ac515d08bcab202412bde9d29c95571533eb4b
3
+ metadata.gz: 1bf3d5110fbd963286f048ea3026d68f21981d9ea05a6ac11d51caf4dd02519e
4
+ data.tar.gz: b89e4ff9c9c5c0eaed889b776fcbedd9daa6a906a45ae5b701f2bfd950b53c77
5
5
  SHA512:
6
- metadata.gz: f65438e469269b4ec1f4bf52756dcbb3a8d4ca436cd52bc30cadacb7db89487c960ad34d703b7c06fec5404071fa3b48109ab0d833a6c8e8f81a52018b63060b
7
- data.tar.gz: 7a3d131f0e0470538fc7dc3886988aa94eabf9b7ce2a5c4104d7b989db0d53e24e2853490494038b187b5ef69b4b4798511987c952dbb6579a5950c6ea9883db
6
+ metadata.gz: e2673276093d3c3d721fe1e01af0b50757e0a9ea7f9fc5aac9e05491fb27eb7b47c2ecd931432dac1ba26ad3158e02762e743608205b001285f46580eb67e838
7
+ data.tar.gz: 2ca0e2112982e0fa51a5fd96586b9a14ffa900b1cff49460793c72815f78d3b17e9dcd1c79dcb7db138b6b9ff0aaed0115d8914439a81474b080c4c4abdcd56b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sila-ruby (0.0.22)
4
+ sila-ruby (0.0.23)
5
5
  addressable (~> 2.6)
6
6
  dotenv (~> 2.7)
7
7
  eth
@@ -0,0 +1,27 @@
1
+ # ================================================
2
+ # SILA-RUBY ======================================
3
+ # ================================================
4
+ module SilaRuby
5
+
6
+ # ==============================================
7
+ # UTILITIES ====================================
8
+ # ==============================================
9
+ class Utilities
10
+
11
+ # --------------------------------------------
12
+ # INCLUDES -----------------------------------
13
+ # --------------------------------------------
14
+ include ApiHelpers
15
+
16
+ # --------------------------------------------
17
+ # GET-NAICS-CATEGORIES -----------------------
18
+ # --------------------------------------------
19
+ #
20
+ def self.get_naics_categories
21
+ message = 'header_msg'
22
+
23
+ sila_post_signed('get_naics_categories', {}, message, nil, nil, nil)
24
+ end
25
+
26
+ end
27
+ end
@@ -1,3 +1,3 @@
1
1
  module SilaRuby
2
- VERSION = '0.0.22'
2
+ VERSION = '0.0.23'
3
3
  end
data/lib/sila_ruby.rb CHANGED
@@ -14,6 +14,7 @@ require 'sila-ruby/entities'
14
14
  require 'sila-ruby/accounts'
15
15
  require 'sila-ruby/transactions'
16
16
  require 'sila-ruby/wallets'
17
+ require 'sila-ruby/utilities'
17
18
 
18
19
  # ================================================
19
20
  # SILA-RUBY ======================================
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sila-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.22
4
+ version: 0.0.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sequoir
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-07-18 00:00:00.000000000 Z
11
+ date: 2021-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -177,6 +177,7 @@ files:
177
177
  - lib/sila-ruby/api_helpers.rb
178
178
  - lib/sila-ruby/entities.rb
179
179
  - lib/sila-ruby/transactions.rb
180
+ - lib/sila-ruby/utilities.rb
180
181
  - lib/sila-ruby/version.rb
181
182
  - lib/sila-ruby/wallets.rb
182
183
  - lib/sila_ruby.rb