neetob 0.2.4 → 0.2.6
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/README.md +1 -1
- data/lib/neetob/cli/github/gems/release.rb +1 -1
- data/lib/neetob/cli/heroku/execute.rb +2 -2
- data/lib/neetob/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7656fb26459fca24754c554dae4fb275ce8dd0fcbd578c6e2cc36b508941f142
|
4
|
+
data.tar.gz: e86597e43c5fa4091358569837d61a0ea84d3e62439d0ddad742ac995c3b2d6c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be85548a325591c9b2c08dfb20bbd4cda44aa5502db775c7a73cae9d5e46d4da6c93cc1b38d415844b07a6a940b69fcb2a00cf27382fcc33d0f8a88396a49f20
|
7
|
+
data.tar.gz: df5bed75a9ec6b2de96335f1162b82bcd0cdee3f8eb6655bd88fe9c471ed3a4d750fd9b700594fc6afa59e01ba9aa6a8c921b8039a19e227dfa0d13b58deca05
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
### [0.2.6](https://www.github.com/bigbinary/neetob/compare/v0.2.5...v0.2.6) (2023-03-15)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* Fixed the heroku execute command ([#221](https://www.github.com/bigbinary/neetob/issues/221)) ([7a93f18](https://www.github.com/bigbinary/neetob/commit/7a93f186f4280e74eec638ed0846e9309db4e2a8))
|
9
|
+
|
10
|
+
### [0.2.5](https://www.github.com/bigbinary/neetob/compare/v0.2.4...v0.2.5) (2023-03-15)
|
11
|
+
|
12
|
+
|
13
|
+
### Bug Fixes
|
14
|
+
|
15
|
+
* Readme fix ([#217](https://www.github.com/bigbinary/neetob/issues/217)) ([2848a04](https://www.github.com/bigbinary/neetob/commit/2848a043438421a3534c661619354b619c31b3e9))
|
16
|
+
|
3
17
|
### [0.2.4](https://www.github.com/bigbinary/neetob/compare/v0.2.3...v0.2.4) (2023-03-14)
|
4
18
|
|
5
19
|
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# neetob
|
2
2
|
|
3
|
-
The `neetob` gem gives different commands for interacting with Github repos, Heroku instances and other tools to manage the workflow of neeto products.
|
3
|
+
The `neetob` gem gives a different set of commands for interacting with Github repos, Heroku instances and other tools to manage the workflow of neeto products.
|
4
4
|
|
5
5
|
## Table of Contents
|
6
6
|
|
@@ -19,10 +19,10 @@ module Neetob
|
|
19
19
|
def run
|
20
20
|
matching_apps = find_all_matching_apps_or_repos(apps, :heroku, sandbox)
|
21
21
|
rails_runner_command = "rails runner '#{command_to_execute}'"
|
22
|
-
heroku_command = should_run_in_rails_console ? rails_runner_command : command_to_execute
|
22
|
+
heroku_command = should_run_in_rails_console ? "run \"#{rails_runner_command}\"" : command_to_execute
|
23
23
|
matching_apps.each do |app|
|
24
24
|
ui.info("\n Working on #{app}\n")
|
25
|
-
output = `heroku
|
25
|
+
output = `heroku #{heroku_command} -a #{app}`
|
26
26
|
unless $?.success?
|
27
27
|
ui.error("There is a problem in accessing the app with name \"#{app}\" in your account.")
|
28
28
|
ui.error("Please check the specified app name and ensure you're authorized to view that app.")
|
data/lib/neetob/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: neetob
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Udai Gupta
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-03-
|
11
|
+
date: 2023-03-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|