neetob-ud 0.2.5 → 0.2.9

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: 2a3c6448a80a53ce8e06226fbc0d46e5d6d1ce4c2c1bbeb1ed623dfc6df28729
4
- data.tar.gz: e988035293a31a398a4b2b550434b338e57d032e16e629cb0bdfbb27ae78ccab
3
+ metadata.gz: 2d77e9b9b6a710e1931f2948f3888b9d7f3610f740e583441b614a09ed3e6a7f
4
+ data.tar.gz: 33044417fd6efb25315955a9c1e4379cf85cc32bb74a146978bb33330fac470c
5
5
  SHA512:
6
- metadata.gz: 3ae6005bd46ab456b8bfbab208c05bcec4004c34acf1f1134e67ae8b8c7375e832b8d14fdd32894e1a743d47154ff6be9ec49514c3df0cc0ca28a755f0d008db
7
- data.tar.gz: 9d659787c0bcfbffa06ebaed3543cadf7a73bd7ce81f5325d1c2b9b773b6dd6549362a1ce5c3f5384e26a9e091194b0d46692c572b77de36878e88378db73bf9
6
+ metadata.gz: 97d93db07565f64a5755330165445552394a843cb63c69c36439a0826510ba91b2b81b6e88012a89657613ca59e9aa4c73a3065a082516a4bfb7e91793629597
7
+ data.tar.gz: ada8c9d29b769b0044fd0a6148ae3f4f8766ef7cf1547a31ac5a09e82d9c3afca864537d58cd7280fbb26e6b51caa2c6ff0663540e26fffb653614d5158ce6ea
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ### [0.1.4](https://www.github.com/udai1931/neetob-temp/compare/v0.1.3...v0.1.4) (2023-02-17)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * 27 ([6854aba](https://www.github.com/udai1931/neetob-temp/commit/6854aba85e60e5b0b60ebf08b7f10a358b826d10))
9
+
3
10
  ### [0.1.3](https://www.github.com/udai1931/neetob-temp/compare/v0.1.2...v0.1.3) (2023-02-17)
4
11
 
5
12
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- neetob-ud (0.2.5)
4
+ neetob-ud (0.2.9)
5
5
  dotenv (~> 2.8.1)
6
6
  launchy (~> 2.5.0)
7
7
  octokit (~> 4.0)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Neetob
4
- VERSION = "0.2.5"
4
+ VERSION = "0.2.9"
5
5
  end
data/neetob.gemspec ADDED
@@ -0,0 +1,50 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/neetob/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "neetob-ud"
7
+ spec.version = Neetob::VERSION
8
+ spec.authors = ["Udai Gupta"]
9
+ spec.email = ["udaigupta19311@gmail.com"]
10
+
11
+ spec.summary = "Provides a set of helper scripts for Github and Heroku."
12
+ spec.description = "This gem gives different commands for interacting with Github and Heroku instances of existing neeto repos."
13
+ spec.homepage = "https://github.com/bigbinary/neetob"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = ">= 3.0.0"
16
+
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+ spec.metadata["source_code_uri"] = "https://github.com/bigbinary/neetob"
19
+ spec.metadata["changelog_uri"] = "https://github.com/bigbinary/neetob/blob/main/CHANGELOG.md"
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(__dir__) do
24
+ `git ls-files -z`.split("\x0").reject do |f|
25
+ (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
26
+ end
27
+ end
28
+ spec.bindir = "exe"
29
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
30
+ spec.require_paths = ["lib"]
31
+
32
+ # Must have deps
33
+ spec.add_dependency "thor", "~> 1.2.1" # for cli
34
+ spec.add_dependency "octokit", "~> 4.0" # for github client
35
+ spec.add_dependency "terminal-table", "~> 3.0.2" # for building cli table
36
+ spec.add_dependency "launchy", "~> 2.5.0" # for opening in browser
37
+ spec.add_dependency "dotenv", "~> 2.8.1" # for loading env variables
38
+
39
+ # To add the files from submodules
40
+ `git submodule --quiet foreach pwd`.split($\).each do |submodule_path|
41
+ Dir.chdir(submodule_path) do
42
+ required_submodule_files = `git ls-files -z`
43
+ .split("\x0")
44
+ .select { |file| file.match("lib/neeto_compliance*|data/*") }
45
+ .map { |file| "#{submodule_path}/#{file}" }
46
+ .map { |file| file.gsub "#{File.dirname(__FILE__)}/", "" }
47
+ spec.files += required_submodule_files
48
+ end
49
+ end
50
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neetob-ud
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Udai Gupta
@@ -155,6 +155,7 @@ files:
155
155
  - lib/neetob/exception_handler.rb
156
156
  - lib/neetob/utils.rb
157
157
  - lib/neetob/version.rb
158
+ - neetob.gemspec
158
159
  - overcommit.yml
159
160
  - scripts/delete_unused_assets.rb
160
161
  homepage: https://github.com/bigbinary/neetob