mohitkhare 0.1.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.
- checksums.yaml +7 -0
- data/lib/mohitkhare.rb +18 -0
- metadata +48 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 51404715b09425672d91fefef947efcb9d093cb88f814669be61ef2c8f3a6be8
|
|
4
|
+
data.tar.gz: 0fe51509025f6b50904a924279145d7e2bf759e629c27c835aa55ef8c12b211a
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: fb0805bc920700f612954c2c2a6fe53142ecadd724e5dbb0a860177007c1de044de4bd1e57f6bc63289ccdabd1589b3675c09f2eed25d583687d8dbb391f4d5a
|
|
7
|
+
data.tar.gz: 37d86caf251d6aec8abbfc092bedf519a4121faae1b249d868e80e21462ddce19d1ddaf3261523ca3ad4e9bb07c17ba0722a34fa829398f41fd8851c61580f42
|
data/lib/mohitkhare.rb
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Mohit Khare - Developer utilities and AI engineering tools
|
|
4
|
+
# https://mohitkhare.me
|
|
5
|
+
|
|
6
|
+
module MohitKhare
|
|
7
|
+
VERSION = '0.1.0'
|
|
8
|
+
|
|
9
|
+
BASE_URL = 'https://mohitkhare.me'
|
|
10
|
+
|
|
11
|
+
def self.version
|
|
12
|
+
VERSION
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def self.base_url
|
|
16
|
+
BASE_URL
|
|
17
|
+
end
|
|
18
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: mohitkhare
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Mohit Khare
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-03-28 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Developer utilities from Mohit Khare including token counting, text analysis,
|
|
14
|
+
and AI engineering helper functions.
|
|
15
|
+
email: dropthehq@gmail.com
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- lib/mohitkhare.rb
|
|
21
|
+
homepage: https://mohitkhare.me
|
|
22
|
+
licenses:
|
|
23
|
+
- MIT
|
|
24
|
+
metadata:
|
|
25
|
+
homepage_uri: https://mohitkhare.me
|
|
26
|
+
source_code_uri: https://github.com/BenchGecko/mohitkhare-ruby
|
|
27
|
+
documentation_uri: https://mohitkhare.me/blog
|
|
28
|
+
bug_tracker_uri: https://github.com/BenchGecko/mohitkhare-ruby/issues
|
|
29
|
+
post_install_message:
|
|
30
|
+
rdoc_options: []
|
|
31
|
+
require_paths:
|
|
32
|
+
- lib
|
|
33
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
34
|
+
requirements:
|
|
35
|
+
- - ">="
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: '2.5'
|
|
38
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
39
|
+
requirements:
|
|
40
|
+
- - ">="
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: '0'
|
|
43
|
+
requirements: []
|
|
44
|
+
rubygems_version: 3.0.3.1
|
|
45
|
+
signing_key:
|
|
46
|
+
specification_version: 4
|
|
47
|
+
summary: Developer utilities and token counting tools
|
|
48
|
+
test_files: []
|