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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 21a58b8e6245e6d82b0cde452f25faf3bb72c1d848409ff19285dbafc56c9b97
4
- data.tar.gz: 13981ddf87b7fd490140b1f61c1d821cf9ed846e77d5f03f16182c18de5b68d5
3
+ metadata.gz: 8c17493616fddf011b5fe64a0aa58d6ab0f2833dd6a2dcc4d584d39991b89104
4
+ data.tar.gz: ce03d500a7b8f749b2a998e8ff6c8f9af09a1ab81bc2ab0dccbe7bcd6d16b22f
5
5
  SHA512:
6
- metadata.gz: cfaee1d9908ee62c4ee66e301276a571c8ceeed530b96b5264a2c0ffe485eef898743c30ba09ccc5f69e1114a14fd0645d59144971022e65b35bbd0e7f4c8544
7
- data.tar.gz: af2066155f7c920226378d7c343bfa1f265bdbba94616422204b33d2c23a88c4a4a04861b5702206531e4194842ee5aef6c8c98bfe4dbbdedf91113c2f98a73f
6
+ metadata.gz: 0f4efe37c186b55fa2532dfd35d3018809d6bcc717cd0f2051e7e4ac8efefdff42d86d6cdfe40bfe563b56531eeb04c2b6d8032d56a1a4ee671af6bdd621b44b
7
+ data.tar.gz: 02f4ff4ceb778af74686d4449b3920e7b4c7978aeeb447e0e302be73da1592b2801a0ce8e464b5c727fa29508523d3fe8a41c857e6fd012cfe3a8f3b8044cdae
data/README.md CHANGED
@@ -1,15 +1,34 @@
1
- # Cadbury
1
+ # CadburyBot :man_in_tuxedo:
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/cadbury`. To experiment with that code, run `bin/console` for an interactive prompt.
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
- TODO: Delete this and the text above, and describe your gem
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 'cadbury'
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 cadbury
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/[USERNAME]/cadbury. 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]/cadbury/blob/master/CODE_OF_CONDUCT.md).
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 Cadbury project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/cadbury/blob/master/CODE_OF_CONDUCT.md).
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.get_environment
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
- def get_environment
51
- puts "Enter the environment name: [dev]"
52
- env = $stdin.gets.chomp
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
@@ -0,0 +1,11 @@
1
+ require "whirly"
2
+ require "paint"
3
+
4
+ module Loader
5
+ def self.show(message: "Loading...")
6
+ Whirly.start do
7
+ Whirly.status = message
8
+ yield
9
+ end
10
+ end
11
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cadbury
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.3"
5
5
  end
data/lib/cadbury.rb CHANGED
@@ -1,4 +1,9 @@
1
- # frozen_string_literal: true
2
-
3
- require "cadbury/cli"
1
+ require "cadbury/environment"
4
2
  require "thor"
3
+
4
+ module Cadbury
5
+ class CLI < Thor
6
+ desc "env [command]", "CRUD operations for environment"
7
+ subcommand "env", Cadbury::Env
8
+ end
9
+ end
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.2
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-29 00:00:00.000000000 Z
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/cli.rb
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