neetob-ud 0.2.5 → 0.2.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -0
- data/Gemfile.lock +1 -1
- data/lib/neetob/cli.rb +1 -1
- data/lib/neetob/version.rb +1 -1
- data/neetob.gemspec +50 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69ebe85d1ed7460fbe6f6b89a3aeedbf14c62db236ef2bffd87d4a4c9a9c057f
|
4
|
+
data.tar.gz: a7b09144d1c9b6099e7c3c8c475aac98a319b34703300c7f5b1975ecaa717173
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 776f7230873888c051ba22a56e92bf35cb185216266990237c52887c3b7c9af986d15fa44b34bbcdabeb3d56d7705ab6d697cc75e2356b8f27d1d3713b425e60
|
7
|
+
data.tar.gz: db9a31ee9aa2a82b1131c17213ce472174d849f5c38bc4e69cbd46ef32db12dc921d4f9622fd206dc0a8c1bca5e868a9bbfd9c37dac131004f6e7af23fe02578
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
### [0.1.5](https://www.github.com/udai1931/neetob-temp/compare/v0.1.4...v0.1.5) (2023-02-17)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* Added abc command ([90a3988](https://www.github.com/udai1931/neetob-temp/commit/90a398893d4770e05a8a44fe42ef27affcf84e70))
|
9
|
+
|
10
|
+
### [0.1.4](https://www.github.com/udai1931/neetob-temp/compare/v0.1.3...v0.1.4) (2023-02-17)
|
11
|
+
|
12
|
+
|
13
|
+
### Bug Fixes
|
14
|
+
|
15
|
+
* 27 ([6854aba](https://www.github.com/udai1931/neetob-temp/commit/6854aba85e60e5b0b60ebf08b7f10a358b826d10))
|
16
|
+
|
3
17
|
### [0.1.3](https://www.github.com/udai1931/neetob-temp/compare/v0.1.2...v0.1.3) (2023-02-17)
|
4
18
|
|
5
19
|
|
data/Gemfile.lock
CHANGED
data/lib/neetob/cli.rb
CHANGED
@@ -32,7 +32,7 @@ module Neetob
|
|
32
32
|
desc "local", "Interact with the local neeto repos"
|
33
33
|
subcommand "local", Local::Commands
|
34
34
|
|
35
|
-
desc "make_repos_uptodate", "Uptodate all neeto repos"
|
35
|
+
desc "make_repos_uptodate", "Uptodate all the neeto repos"
|
36
36
|
option :all_neeto_repos, type: :boolean, aliases: "--all", desc: "Use this flag for working with all neeto repos",
|
37
37
|
default: false
|
38
38
|
def make_repos_uptodate
|
data/lib/neetob/version.rb
CHANGED
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.
|
4
|
+
version: 0.2.11
|
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
|