vagrant-simple_cloud 1.0.1 → 1.0.2

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.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +10 -0
  3. data/LICENSE +373 -0
  4. data/Rakefile +21 -0
  5. data/build.sh +31 -0
  6. data/lib/vagrant-simple_cloud/actions/check_state.rb +19 -0
  7. data/lib/vagrant-simple_cloud/actions/create.rb +94 -0
  8. data/lib/vagrant-simple_cloud/actions/destroy.rb +30 -0
  9. data/lib/vagrant-simple_cloud/actions/modify_provision_path.rb +38 -0
  10. data/lib/vagrant-simple_cloud/actions/power_off.rb +35 -0
  11. data/lib/vagrant-simple_cloud/actions/power_on.rb +48 -0
  12. data/lib/vagrant-simple_cloud/actions/rebuild.rb +49 -0
  13. data/lib/vagrant-simple_cloud/actions/reload.rb +45 -0
  14. data/lib/vagrant-simple_cloud/actions/setup_key.rb +58 -0
  15. data/lib/vagrant-simple_cloud/actions/setup_sudo.rb +48 -0
  16. data/lib/vagrant-simple_cloud/actions/setup_user.rb +66 -0
  17. data/lib/vagrant-simple_cloud/actions/shut_down.rb +35 -0
  18. data/lib/vagrant-simple_cloud/actions.rb +164 -0
  19. data/lib/vagrant-simple_cloud/commands/list.rb +93 -0
  20. data/lib/vagrant-simple_cloud/commands/rebuild.rb +29 -0
  21. data/lib/vagrant-simple_cloud/config.rb +69 -0
  22. data/lib/vagrant-simple_cloud/errors.rb +37 -0
  23. data/lib/vagrant-simple_cloud/helpers/client.rb +106 -0
  24. data/lib/vagrant-simple_cloud/helpers/client_service.rb +81 -0
  25. data/lib/vagrant-simple_cloud/helpers/result.rb +40 -0
  26. data/lib/vagrant-simple_cloud/plugin.rb +31 -0
  27. data/lib/vagrant-simple_cloud/provider.rb +102 -0
  28. data/lib/vagrant-simple_cloud/version.rb +5 -0
  29. data/lib/vagrant-simple_cloud.rb +20 -0
  30. data/locales/en.yml +92 -0
  31. data/test/Vagrantfile +14 -0
  32. data/test/scripts/provision.sh +3 -0
  33. data/test/test.sh +12 -0
  34. data/test/test_id_rsa +27 -0
  35. data/test/test_id_rsa.pub +1 -0
  36. data/vagrant-simple_cloud.gemspec +21 -0
  37. metadata +43 -3
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-simple_cloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Bender
@@ -60,7 +60,42 @@ email:
60
60
  executables: []
61
61
  extensions: []
62
62
  extra_rdoc_files: []
63
- files: []
63
+ files:
64
+ - Gemfile
65
+ - LICENSE
66
+ - Rakefile
67
+ - build.sh
68
+ - lib/vagrant-simple_cloud.rb
69
+ - lib/vagrant-simple_cloud/actions.rb
70
+ - lib/vagrant-simple_cloud/actions/check_state.rb
71
+ - lib/vagrant-simple_cloud/actions/create.rb
72
+ - lib/vagrant-simple_cloud/actions/destroy.rb
73
+ - lib/vagrant-simple_cloud/actions/modify_provision_path.rb
74
+ - lib/vagrant-simple_cloud/actions/power_off.rb
75
+ - lib/vagrant-simple_cloud/actions/power_on.rb
76
+ - lib/vagrant-simple_cloud/actions/rebuild.rb
77
+ - lib/vagrant-simple_cloud/actions/reload.rb
78
+ - lib/vagrant-simple_cloud/actions/setup_key.rb
79
+ - lib/vagrant-simple_cloud/actions/setup_sudo.rb
80
+ - lib/vagrant-simple_cloud/actions/setup_user.rb
81
+ - lib/vagrant-simple_cloud/actions/shut_down.rb
82
+ - lib/vagrant-simple_cloud/commands/list.rb
83
+ - lib/vagrant-simple_cloud/commands/rebuild.rb
84
+ - lib/vagrant-simple_cloud/config.rb
85
+ - lib/vagrant-simple_cloud/errors.rb
86
+ - lib/vagrant-simple_cloud/helpers/client.rb
87
+ - lib/vagrant-simple_cloud/helpers/client_service.rb
88
+ - lib/vagrant-simple_cloud/helpers/result.rb
89
+ - lib/vagrant-simple_cloud/plugin.rb
90
+ - lib/vagrant-simple_cloud/provider.rb
91
+ - lib/vagrant-simple_cloud/version.rb
92
+ - locales/en.yml
93
+ - test/Vagrantfile
94
+ - test/scripts/provision.sh
95
+ - test/test.sh
96
+ - test/test_id_rsa
97
+ - test/test_id_rsa.pub
98
+ - vagrant-simple_cloud.gemspec
64
99
  homepage:
65
100
  licenses: []
66
101
  metadata: {}
@@ -84,4 +119,9 @@ rubygems_version: 2.5.2.1
84
119
  signing_key:
85
120
  specification_version: 4
86
121
  summary: Enables Vagrant to manage SimpleCloud droplets. Based on https://github.com/devopsgroup-io/vagrant-digitalocean.
87
- test_files: []
122
+ test_files:
123
+ - test/Vagrantfile
124
+ - test/scripts/provision.sh
125
+ - test/test.sh
126
+ - test/test_id_rsa
127
+ - test/test_id_rsa.pub