apiha 0.0.0

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.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/exe/apiha +6 -0
  3. data/lib/apiha/version.rb +19 -0
  4. data/lib/apiha.rb +10 -0
  5. metadata +50 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: bad9a4d01c8c45b5d1ce84e9bf426b972f4534ff5473159e2f9e4d40b076e52a
4
+ data.tar.gz: ea999904b503cf6f0856901a93b97921e868bbbbc03fc978c26709f6ebdbd146
5
+ SHA512:
6
+ metadata.gz: 3535794cc0efc20ed6a7c35cfcb38c58755b7fe2550fa4c99cebdea024a3d40e951281cdb25ec709dedc6b94e4a77fc5832139f9b3fa59145366d6f3c8fd3c61
7
+ data.tar.gz: 94edf419ad93a52e3557f780c80dc6d3ced503026cbfbf0647e768810af60ad9270907415f31846c637fdf5b503686f472d07d78273ec7e942219a8e6d46cc89
data/exe/apiha ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ # require 'apiha/cli'
5
+
6
+ # Apiha::CLI.run
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Apiha
4
+ # Gem version module
5
+ module Version
6
+ # x.0.0 changes that will break existing users code if they update
7
+ MAJOR = 0
8
+ # 0.x.0 changes, such as new functionality/features
9
+ MINOR = 0
10
+ # 0.0.x changes, such as small bug fixes
11
+ PATCH = 0
12
+
13
+ # Get current gem version
14
+ # @return [String]
15
+ def self.current
16
+ "#{MAJOR}.#{MINOR}.#{PATCH}"
17
+ end
18
+ end
19
+ end
data/lib/apiha.rb ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "apiha/version"
4
+
5
+ module Apiha
6
+ autoad :Version, 'apiha/varsion'
7
+
8
+ class Error < StandardError; end
9
+ # Your code goes here...
10
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: apiha
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Alex Merkulov
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-07-01 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: An easy-to-use client library for making API requests from Ruby.
14
+ email:
15
+ - rormercury@gmail.com
16
+ executables:
17
+ - apiha
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - exe/apiha
22
+ - lib/apiha.rb
23
+ - lib/apiha/version.rb
24
+ homepage: https://github.com/bf-rb/apiha
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ homepage_uri: https://github.com/bf-rb/apiha
29
+ source_code_uri: https://github.com/bf-rb/apiha
30
+ changelog_uri: https://github.com/bf-rb/apiha
31
+ post_install_message:
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: 2.7.0
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubygems_version: 3.3.14
47
+ signing_key:
48
+ specification_version: 4
49
+ summary: Any API call should be easy
50
+ test_files: []