cadburybot 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +26 -7
- data/lib/cadbury/environment.rb +22 -0
- data/lib/cadbury/helpers/environment_builder.rb +8 -7
- data/lib/cadbury/helpers/loader.rb +11 -0
- data/lib/cadbury/version.rb +1 -1
- data/lib/cadbury.rb +8 -3
- metadata +4 -3
- data/lib/cadbury/cli.rb +0 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c17493616fddf011b5fe64a0aa58d6ab0f2833dd6a2dcc4d584d39991b89104
|
4
|
+
data.tar.gz: ce03d500a7b8f749b2a998e8ff6c8f9af09a1ab81bc2ab0dccbe7bcd6d16b22f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f4efe37c186b55fa2532dfd35d3018809d6bcc717cd0f2051e7e4ac8efefdff42d86d6cdfe40bfe563b56531eeb04c2b6d8032d56a1a4ee671af6bdd621b44b
|
7
|
+
data.tar.gz: 02f4ff4ceb778af74686d4449b3920e7b4c7978aeeb447e0e302be73da1592b2801a0ce8e464b5c727fa29508523d3fe8a41c857e6fd012cfe3a8f3b8044cdae
|
data/README.md
CHANGED
@@ -1,15 +1,34 @@
|
|
1
|
-
#
|
1
|
+
# CadburyBot :man_in_tuxedo:
|
2
2
|
|
3
|
-
|
3
|
+
CadburyBot is an API client CLI which helps you manage multiple api environments like `dev/qa/local/prod`. Just simply define your environment by running `cadburybot env set <environment-name>`.
|
4
4
|
|
5
|
-
|
5
|
+
## Command list
|
6
|
+
|
7
|
+
```bash
|
8
|
+
cadburybot env get # lists all the environments
|
9
|
+
cadburybot env get <env-name> # lists the asked envrironment
|
10
|
+
cadburybot env set <environment-name> # Creates or updates environment by asking questions to you.
|
11
|
+
cadburybot env delete <environment-name>
|
12
|
+
cadburybot env default <environment-name> # sets the default environment
|
13
|
+
|
14
|
+
cadburybot request get # lists all the request for the default environment
|
15
|
+
cadburybot request get <request-name> # lists the asked request
|
16
|
+
cadburybot request set <request-name> # add/update request to the default environment by answering the questions like request endpoint, http method etc.,
|
17
|
+
cadburybot request delete <request-name>
|
18
|
+
|
19
|
+
cadburybot send <request-name> #uses default environment
|
20
|
+
or
|
21
|
+
cadburybot send <request-name> --env <env-name>
|
22
|
+
```
|
23
|
+
|
24
|
+
> Pro tip: CadburyBot saves all these configurations as JSON file under `~/cadburybot` directory. Instead of using `request` or `env` command, You can also manually update them.
|
6
25
|
|
7
26
|
## Installation
|
8
27
|
|
9
28
|
Add this line to your application's Gemfile:
|
10
29
|
|
11
30
|
```ruby
|
12
|
-
gem '
|
31
|
+
gem 'cadburybot'
|
13
32
|
```
|
14
33
|
|
15
34
|
And then execute:
|
@@ -18,7 +37,7 @@ And then execute:
|
|
18
37
|
|
19
38
|
Or install it yourself as:
|
20
39
|
|
21
|
-
$ gem install
|
40
|
+
$ gem install cadburybot
|
22
41
|
|
23
42
|
## Usage
|
24
43
|
|
@@ -32,7 +51,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
32
51
|
|
33
52
|
## Contributing
|
34
53
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
54
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/sharran-murali/cadburybot. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/cadburybot/blob/master/CODE_OF_CONDUCT.md).
|
36
55
|
|
37
56
|
## License
|
38
57
|
|
@@ -40,4 +59,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
40
59
|
|
41
60
|
## Code of Conduct
|
42
61
|
|
43
|
-
Everyone interacting in the
|
62
|
+
Everyone interacting in the cadburybot project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/sharran-murali/cadburybot/blob/master/CODE_OF_CONDUCT.md).
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require "thor"
|
2
|
+
require "json"
|
3
|
+
require_relative "./helpers/environment_builder"
|
4
|
+
require_relative "./helpers/loader"
|
5
|
+
|
6
|
+
module Cadbury
|
7
|
+
class Env < Thor
|
8
|
+
desc "set [environment-name]", "Creates a new environment or updates the existing environment"
|
9
|
+
def set(name)
|
10
|
+
EnvironmentBuilder.create_environment name
|
11
|
+
end
|
12
|
+
|
13
|
+
desc "get 'or' get [environment-name]", "Gets all environments or the asked environment"
|
14
|
+
def get(name = nil)
|
15
|
+
if name.nil?
|
16
|
+
puts JSON.pretty_generate EnvironmentBuilder.read_configs
|
17
|
+
else
|
18
|
+
puts JSON.pretty_generate EnvironmentBuilder.get_config(env: name)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -4,14 +4,14 @@ require "json"
|
|
4
4
|
require "fileutils"
|
5
5
|
|
6
6
|
class EnvironmentBuilder
|
7
|
-
APIBOT_DIR = "#{Dir.home}/apibot"
|
8
|
-
ENV_FILE_PATH = "#{APIBOT_DIR}/environment.json"
|
7
|
+
APIBOT_DIR = "#{Dir.home}/apibot".freeze
|
8
|
+
ENV_FILE_PATH = "#{APIBOT_DIR}/environment.json".freeze
|
9
9
|
|
10
10
|
attr_accessor :configs
|
11
11
|
|
12
|
-
def self.create_environment
|
12
|
+
def self.create_environment(name)
|
13
13
|
config_util = EnvironmentBuilder.new
|
14
|
-
config_util.
|
14
|
+
config_util.set_environment name
|
15
15
|
config_util.get_base_url
|
16
16
|
config_util.get_auth_token_header_key
|
17
17
|
config_util.get_auth_token_header_value
|
@@ -47,9 +47,10 @@ class EnvironmentBuilder
|
|
47
47
|
EnvironmentBuilder.read_configs[env]
|
48
48
|
end
|
49
49
|
|
50
|
-
|
51
|
-
|
52
|
-
|
50
|
+
# Instance methods
|
51
|
+
|
52
|
+
def set_environment(name)
|
53
|
+
env = name
|
53
54
|
@env = env unless env.empty?
|
54
55
|
@configs[@env] = {} unless @configs.key?(@env)
|
55
56
|
end
|
data/lib/cadbury/version.rb
CHANGED
data/lib/cadbury.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cadburybot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sharran
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-08-
|
11
|
+
date: 2021-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -135,10 +135,11 @@ files:
|
|
135
135
|
- bin/console
|
136
136
|
- bin/setup
|
137
137
|
- lib/cadbury.rb
|
138
|
-
- lib/cadbury/
|
138
|
+
- lib/cadbury/environment.rb
|
139
139
|
- lib/cadbury/helpers/environment_builder.rb
|
140
140
|
- lib/cadbury/helpers/global.rb
|
141
141
|
- lib/cadbury/helpers/http_client.rb
|
142
|
+
- lib/cadbury/helpers/loader.rb
|
142
143
|
- lib/cadbury/version.rb
|
143
144
|
homepage: https://github.com/sharran-murali/cadbury
|
144
145
|
licenses:
|
data/lib/cadbury/cli.rb
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "thor"
|
4
|
-
|
5
|
-
module Cadbury
|
6
|
-
class CLI < Thor
|
7
|
-
desc "hello [name]", "say my name"
|
8
|
-
|
9
|
-
def hello(name)
|
10
|
-
if name == "Heisenberg"
|
11
|
-
puts "you are goddman right"
|
12
|
-
else
|
13
|
-
puts "say my name"
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|