hind 0.1.0 → 0.1.1

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: b3c0df71c84060e0417139c2d3458f1f889af0cb78b8323220ef67304b82c332
4
- data.tar.gz: 8d707849d54508dfc120a47113552c87d216d5b69665dbee1e0f8477a625bfc0
3
+ metadata.gz: 83ad132cfd2750f46ae969b50d1ac56d385a48dbe8462bdaea8d0e3551d6303f
4
+ data.tar.gz: 775441d3a62f7791ade07ab6eee3c3e742ff38c8de83c275e092595177abe28d
5
5
  SHA512:
6
- metadata.gz: 9238a787be39b18fe96da0ad5a311dbef75aebf3c178fb7c90d1618cf1fd4747d82c717cec3cde0720131cf5fe1e5d236d0d9bdde3c697ec5a45de333dd24b0e
7
- data.tar.gz: 5327651b3056ab53c9fa6e22cbe86d5a94129fff76cc3a96747a5c27bb8774ba113e8e10008b828ed63c708e9dd34ac4c99d633347fef7a20d517d38ad400fb7
6
+ metadata.gz: 383278a2c400358fae878b2f4b15bfc87a24c055d8d8b7dbbc3c9ccb755cc17915564e7808e3dd3b588ea0050f39e0a830b775fd333ef628855d7416c5c23af1
7
+ data.tar.gz: 1e929b46930f8398297b6c458bced4960e5ac81d4c760cd4832770e18b62f3c8e84259d7afe0ff18bdd1d98aef9b15446c35e24f4730af470bdff631c55df11a
data/bin/console ADDED
@@ -0,0 +1,11 @@
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 ADDED
@@ -0,0 +1,8 @@
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
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.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,12 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hind
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
- - Aboobacker MK
8
- autorequire:
9
- bindir: exe
7
+ - Your Name
8
+ bindir: bin
10
9
  cert_chain: []
11
10
  date: 2025-02-09 00:00:00.000000000 Z
12
11
  dependencies:
@@ -96,7 +95,7 @@ dependencies:
96
95
  version: '3.0'
97
96
  description: A tool to generate LSIF and SCIP index files for Ruby codebases
98
97
  email:
99
- - aboobackervyd@gmail.com
98
+ - your.email@example.com
100
99
  executables:
101
100
  - hind
102
101
  extensions: []
@@ -104,7 +103,9 @@ extra_rdoc_files: []
104
103
  files:
105
104
  - LICENSE.txt
106
105
  - README.md
107
- - exe/hind
106
+ - bin/console
107
+ - bin/hind
108
+ - bin/setup
108
109
  - lib/hind.rb
109
110
  - lib/hind/cli.rb
110
111
  - lib/hind/lsif.rb
@@ -118,15 +119,14 @@ files:
118
119
  - lib/hind/scip/generator.rb
119
120
  - lib/hind/scip/visitor.rb
120
121
  - lib/hind/version.rb
121
- homepage: https://github.com/tachyons/hind
122
+ homepage: https://github.com/yourusername/hind
122
123
  licenses:
123
124
  - MIT
124
125
  metadata:
125
126
  allowed_push_host: https://rubygems.org
126
- homepage_uri: https://github.com/tachyons/hind
127
- source_code_uri: https://github.com/tachyons/hind
128
- changelog_uri: https://github.com/tachyons/hind/blob/main/CHANGELOG.md
129
- post_install_message:
127
+ homepage_uri: https://github.com/yourusername/hind
128
+ source_code_uri: https://github.com/yourusername/hind
129
+ changelog_uri: https://github.com/yourusername/hind/blob/main/CHANGELOG.md
130
130
  rdoc_options: []
131
131
  require_paths:
132
132
  - lib
@@ -141,8 +141,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
141
141
  - !ruby/object:Gem::Version
142
142
  version: '0'
143
143
  requirements: []
144
- rubygems_version: 3.5.3
145
- signing_key:
144
+ rubygems_version: 3.6.2
146
145
  specification_version: 4
147
146
  summary: LSIF and SCIP generator for Ruby
148
147
  test_files: []
/data/{exe → bin}/hind RENAMED
File without changes