vagrant-simple_cloud 1.0.0 → 1.0.1

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. metadata +5 -45
  3. data/.gitignore +0 -11
  4. data/Gemfile +0 -10
  5. data/LICENSE +0 -373
  6. data/Rakefile +0 -22
  7. data/lib/vagrant-simple_cloud/actions/check_state.rb +0 -19
  8. data/lib/vagrant-simple_cloud/actions/create.rb +0 -94
  9. data/lib/vagrant-simple_cloud/actions/destroy.rb +0 -30
  10. data/lib/vagrant-simple_cloud/actions/modify_provision_path.rb +0 -38
  11. data/lib/vagrant-simple_cloud/actions/power_off.rb +0 -35
  12. data/lib/vagrant-simple_cloud/actions/power_on.rb +0 -48
  13. data/lib/vagrant-simple_cloud/actions/rebuild.rb +0 -49
  14. data/lib/vagrant-simple_cloud/actions/reload.rb +0 -45
  15. data/lib/vagrant-simple_cloud/actions/setup_key.rb +0 -58
  16. data/lib/vagrant-simple_cloud/actions/setup_sudo.rb +0 -48
  17. data/lib/vagrant-simple_cloud/actions/setup_user.rb +0 -66
  18. data/lib/vagrant-simple_cloud/actions/shut_down.rb +0 -35
  19. data/lib/vagrant-simple_cloud/actions.rb +0 -164
  20. data/lib/vagrant-simple_cloud/commands/list.rb +0 -93
  21. data/lib/vagrant-simple_cloud/commands/rebuild.rb +0 -29
  22. data/lib/vagrant-simple_cloud/config.rb +0 -69
  23. data/lib/vagrant-simple_cloud/errors.rb +0 -37
  24. data/lib/vagrant-simple_cloud/helpers/client.rb +0 -106
  25. data/lib/vagrant-simple_cloud/helpers/client_service.rb +0 -81
  26. data/lib/vagrant-simple_cloud/helpers/result.rb +0 -40
  27. data/lib/vagrant-simple_cloud/plugin.rb +0 -31
  28. data/lib/vagrant-simple_cloud/provider.rb +0 -102
  29. data/lib/vagrant-simple_cloud/version.rb +0 -5
  30. data/lib/vagrant-simple_cloud.rb +0 -20
  31. data/locales/en.yml +0 -92
  32. data/test/Vagrantfile +0 -14
  33. data/test/scripts/provision.sh +0 -3
  34. data/test/test.sh +0 -10
  35. data/test/test_id_rsa +0 -27
  36. data/test/test_id_rsa.pub +0 -1
  37. data/vagrant-simple_cloud.gemspec +0 -21
@@ -1,21 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'vagrant-simple_cloud/version'
5
-
6
- Gem::Specification.new do |gem|
7
- gem.name = "vagrant-simple_cloud"
8
- gem.version = VagrantPlugins::SimpleCloud::VERSION
9
- gem.authors = ["John Bender","Seth Reeser","Bulat Yusupov"]
10
- gem.email = ["usbulat@gmail.com"]
11
- gem.description = %q{Enables Vagrant to manage SimpleCloud droplets. Based on https://github.com/devopsgroup-io/vagrant-digitalocean.}
12
- gem.summary = gem.description
13
-
14
- gem.files = `git ls-files`.split($/)
15
- gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
16
- gem.require_paths = ["lib"]
17
-
18
- gem.add_dependency "faraday", ">= 0.8.6"
19
- gem.add_dependency "json"
20
- gem.add_dependency "log4r"
21
- end