hind 0.1.2 → 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: 32bbe6d5a60d938e3488b900d71934deece01265da3ad23b62ab75fef4a84886
4
- data.tar.gz: c4e90be47c9b2c73b56e0f861753dda011dd8429adb79467804162955601ee88
3
+ metadata.gz: 529ef7df3893823eaa94ebad4cd6394479f19196ad67b23f07214ccd2a8d7bcf
4
+ data.tar.gz: a37e382320cb9e9050b4dd884e3110ea6f8e507153c374f36977bf18813f6f01
5
5
  SHA512:
6
- metadata.gz: 58ecd7c81c2c9ef20610421321724e7c559b6a54044e947bead98449cea231dcc27d2c21215ec3ed64d5b62cfc0534e64674dabeace288d7a75dca828755ed58
7
- data.tar.gz: 52a181f665a67514012349f3886edceb771a7771225da08dfe69fdf8969264c34df0d650a6adecb98c375ce840a0d102b0ecc2b422a64ab0cb2fb62e17f85475
6
+ metadata.gz: 7cb54e82a79bbf8e554b5f6f26d046cc50f89ae16aec4a3625c2484632a7ca3664ac6e2d4e6c3c7daafd4c185db6524eb2ffe279a50654c66b5f9b9d0eadbeca
7
+ data.tar.gz: bef78b81aa851af8bb15d4ccda5f9aaf55bbadf62c5f145f1e1c2126920dabde2da04c3144a67d2114d9189a22a7e21f323fdfe3ece7ee8055aae7ff9a1e5ebb
data/{bin → exe}/hind RENAMED
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
- require "bundler/setup"
3
2
  require "hind"
4
3
  require "hind/cli"
5
4
 
data/lib/hind/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Hind
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.3"
5
5
  end
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hind
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aboobacker MK
8
- bindir: bin
8
+ bindir: exe
9
9
  cert_chain: []
10
10
  date: 2025-02-09 00:00:00.000000000 Z
11
11
  dependencies:
@@ -103,9 +103,7 @@ extra_rdoc_files: []
103
103
  files:
104
104
  - LICENSE.txt
105
105
  - README.md
106
- - bin/console
107
- - bin/hind
108
- - bin/setup
106
+ - exe/hind
109
107
  - lib/hind.rb
110
108
  - lib/hind/cli.rb
111
109
  - lib/hind/lsif.rb
data/bin/console DELETED
@@ -1,11 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- require "bundler/setup"
5
- require "hind"
6
-
7
- # You can add fixtures and/or initialization code here to make experimenting
8
- # with your gem easier. You can also use a different console, if you like.
9
-
10
- require "irb"
11
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here