red_drop 0.1.0 → 0.2.0

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: d1db5773a0cd7ddbb2bc91980a382ad55df83d61698e9bce86c528234c05142e
4
- data.tar.gz: d4452d721f41d8970e08154a346c97857318ff50eb0f224fdc996ee968918c60
3
+ metadata.gz: 6b12a527dc9ff28ec0c9e792c104101b901b026b7fe6193d60515ea3f7f977a2
4
+ data.tar.gz: c77538eb9f87ce0a5f28d6ae031aa3cf369f447f9bf225065e1688e36b9cef6b
5
5
  SHA512:
6
- metadata.gz: 4272b8cc7994a7588988df318ccee25fe11b787eca07944bacde902f95a60b8f2d3d390431c6ea95cdf1d24f20397ec7fd925045a039829dccff9c3cb1be821d
7
- data.tar.gz: 613353c97c01c208b4a1980019f8499dc9e7f7061e064cce6df20be3d99d63d6e94738d5866fa6a5be717257383c2e1088005623f2e3701e0ee6d06fbbb72745
6
+ metadata.gz: d7868499fc8db147cef82c8cbe18a3d8e245cc799249080f35ba342ae89e58e3a33812ce9946cfeb38d914d55ef96bb44b74ee3c5cd1255083ce1fd5c7c2a1ee
7
+ data.tar.gz: 9e5968363a8c458fcfad17e621a10909680894ea9fcc4360a109e10fef09c88e7a36e54a98c7f860762fbaa52dc74b27e8be9aa627c878dc9bbc4f3d27c0a6c3
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- red_drop (0.1.0)
4
+ red_drop (0.2.0)
5
5
  droplet_kit (~> 3.18)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -1,4 +1,6 @@
1
- # RedDrop
1
+ # red_drop
2
+
3
+ is the seed of a grander vision of server automation with ruby.
2
4
 
3
5
  ## Installation
4
6
 
@@ -22,15 +24,16 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
22
24
 
23
25
  ### Todos
24
26
 
25
- - Research making gem executable
26
- - Research TDD and minitest vs rspec
27
- - refactor status module to match delete module droplets var structure
28
- - maybe convert delete module droplets array to hash with array index as key to avoid accidental deletions
29
- - refactor delete while loop to match that of red_drop.rb
30
- - refactor auth to use Faraday which is used by DropletKit
31
- - refactor status to get ip address of runnning droplets
32
- - Research having delete get status before executing
33
- - use cloud_init to automate server config for SSH, ufw, docker
27
+ - Research: making gem executable
28
+ - Research: TDD and minitest vs rspec
29
+ - Refactor: status module to match delete module droplets var structure
30
+ - Research: converting delete module droplets array to hash with array index as key to avoid accidental deletions
31
+ - Refactor: delete while loop to match that of red_drop.rb
32
+ - Refactor: auth to use Faraday which is used by DropletKit
33
+ - Research: status module to get ip address of runnning droplets
34
+ - Research: having delete module get status before executing
35
+ - Research: using cloud_init to automate server config for SSH, ufw, docker
36
+ - Research: should I use duck typing
34
37
 
35
38
  ## Contributing
36
39
 
data/exe/red_drop ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "red_drop"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RedDrop
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.0"
5
5
  end
data/lib/red_drop.rb CHANGED
@@ -1,5 +1,3 @@
1
- #!/usr/bin/env ruby
2
-
3
1
  require "red_drop/auth"
4
2
  auth = Auth.new
5
3
  token = auth.token
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: red_drop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergio Ortiz
@@ -42,7 +42,8 @@ description: A cli wriiten in ruby for executing automated droplet tasks with sa
42
42
  configurations baked in.
43
43
  email:
44
44
  - ortiz.sergio0303@gmail.com
45
- executables: []
45
+ executables:
46
+ - red_drop
46
47
  extensions: []
47
48
  extra_rdoc_files: []
48
49
  files:
@@ -52,6 +53,7 @@ files:
52
53
  - LICENSE.txt
53
54
  - README.md
54
55
  - Rakefile
56
+ - exe/red_drop
55
57
  - lib/red_drop.rb
56
58
  - lib/red_drop/auth.rb
57
59
  - lib/red_drop/create.rb