hind 0.1.2 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 32bbe6d5a60d938e3488b900d71934deece01265da3ad23b62ab75fef4a84886
4
- data.tar.gz: c4e90be47c9b2c73b56e0f861753dda011dd8429adb79467804162955601ee88
3
+ metadata.gz: 89ca540ebc5d2ae79689ed9eb4c4ad9a89cea5b66991adecb4de8262f8d50867
4
+ data.tar.gz: c1d5b39a3a772b1c4079376491361f67cb0dc2853a484e43ceca18b370798f1b
5
5
  SHA512:
6
- metadata.gz: 58ecd7c81c2c9ef20610421321724e7c559b6a54044e947bead98449cea231dcc27d2c21215ec3ed64d5b62cfc0534e64674dabeace288d7a75dca828755ed58
7
- data.tar.gz: 52a181f665a67514012349f3886edceb771a7771225da08dfe69fdf8969264c34df0d650a6adecb98c375ce840a0d102b0ecc2b422a64ab0cb2fb62e17f85475
6
+ metadata.gz: cbb72f614d4355c2aa7f4d96b6c5f9babbd61565c7aa6e571c1f33096b5ed8154bda34cb20c9a55523bf5b9a628ec79f7901d0a04d71ceef992cd9930bd62f19
7
+ data.tar.gz: 3e2288b97ef3f4028060ff754b069bf5aa457a8429edce1e9177c75307d605a872b87eced63184cbda4578e17ffc5b39c2529ac0317d968e0a75d83e364a7b43
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.4"
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.4
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