vagrant-aws 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -1
- data/Gemfile +1 -1
- data/lib/vagrant-aws/action.rb +1 -0
- data/lib/vagrant-aws/action/run_instance.rb +7 -1
- data/lib/vagrant-aws/action/sync_folders.rb +23 -8
- data/lib/vagrant-aws/action/terminate_instance.rb +5 -5
- data/lib/vagrant-aws/cap/rsync_available.rb +7 -0
- data/lib/vagrant-aws/config.rb +25 -1
- data/lib/vagrant-aws/version.rb +1 -1
- data/locales/en.yml +1 -1
- data/spec/vagrant-aws/config_spec.rb +4 -2
- data/vagrant-aws.gemspec +1 -1
- data/vagrant-aws.sublime-project +9 -0
- data/vagrant-aws.sublime-workspace +1105 -0
- metadata +33 -30
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-aws
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mitchell Hashimoto
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-12-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fog
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ~>
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: 1.18.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.
|
26
|
+
version: 1.18.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -86,41 +86,44 @@ executables: []
|
|
86
86
|
extensions: []
|
87
87
|
extra_rdoc_files: []
|
88
88
|
files:
|
89
|
-
- vagrant-aws.
|
90
|
-
- Gemfile
|
91
|
-
- spec/vagrant-aws/config_spec.rb
|
92
|
-
- dummy.box
|
93
|
-
- CHANGELOG.md
|
89
|
+
- vagrant-aws.sublime-project
|
94
90
|
- LICENSE
|
95
|
-
-
|
96
|
-
- lib/vagrant-aws/
|
97
|
-
- lib/vagrant-aws/plugin.rb
|
98
|
-
- lib/vagrant-aws/errors.rb
|
91
|
+
- dummy.box
|
92
|
+
- lib/vagrant-aws/cap/rsync_available.rb
|
99
93
|
- lib/vagrant-aws/action.rb
|
100
|
-
- lib/vagrant-aws/
|
101
|
-
- lib/vagrant-aws/provider.rb
|
94
|
+
- lib/vagrant-aws/plugin.rb
|
102
95
|
- lib/vagrant-aws/util/timer.rb
|
103
|
-
- lib/vagrant-aws/action/
|
104
|
-
- lib/vagrant-aws/action/
|
105
|
-
- lib/vagrant-aws/action/message_already_created.rb
|
106
|
-
- lib/vagrant-aws/action/sync_folders.rb
|
107
|
-
- lib/vagrant-aws/action/is_stopped.rb
|
108
|
-
- lib/vagrant-aws/action/read_ssh_info.rb
|
96
|
+
- lib/vagrant-aws/action/stop_instance.rb
|
97
|
+
- lib/vagrant-aws/action/wait_for_state.rb
|
109
98
|
- lib/vagrant-aws/action/run_instance.rb
|
110
|
-
- lib/vagrant-aws/action/
|
99
|
+
- lib/vagrant-aws/action/is_created.rb
|
100
|
+
- lib/vagrant-aws/action/message_will_not_destroy.rb
|
111
101
|
- lib/vagrant-aws/action/terminate_instance.rb
|
112
|
-
- lib/vagrant-aws/action/
|
102
|
+
- lib/vagrant-aws/action/read_ssh_info.rb
|
103
|
+
- lib/vagrant-aws/action/start_instance.rb
|
104
|
+
- lib/vagrant-aws/action/read_state.rb
|
113
105
|
- lib/vagrant-aws/action/connect_aws.rb
|
114
|
-
- lib/vagrant-aws/action/
|
115
|
-
- lib/vagrant-aws/action/is_created.rb
|
116
|
-
- lib/vagrant-aws/action/stop_instance.rb
|
106
|
+
- lib/vagrant-aws/action/sync_folders.rb
|
117
107
|
- lib/vagrant-aws/action/message_not_created.rb
|
118
|
-
- lib/vagrant-aws/action/
|
108
|
+
- lib/vagrant-aws/action/message_already_created.rb
|
109
|
+
- lib/vagrant-aws/action/timed_provision.rb
|
110
|
+
- lib/vagrant-aws/action/warn_networks.rb
|
111
|
+
- lib/vagrant-aws/action/is_stopped.rb
|
112
|
+
- lib/vagrant-aws/provider.rb
|
113
|
+
- lib/vagrant-aws/config.rb
|
114
|
+
- lib/vagrant-aws/errors.rb
|
115
|
+
- lib/vagrant-aws/version.rb
|
116
|
+
- lib/vagrant-aws.rb
|
117
|
+
- Gemfile
|
118
|
+
- CHANGELOG.md
|
119
|
+
- spec/vagrant-aws/config_spec.rb
|
120
|
+
- locales/en.yml
|
121
|
+
- README.md
|
119
122
|
- Rakefile
|
120
123
|
- example_box/metadata.json
|
121
124
|
- example_box/README.md
|
122
|
-
-
|
123
|
-
-
|
125
|
+
- vagrant-aws.gemspec
|
126
|
+
- vagrant-aws.sublime-workspace
|
124
127
|
- .gitignore
|
125
128
|
homepage: http://www.vagrantup.com
|
126
129
|
licenses:
|
@@ -142,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
142
145
|
version: 1.3.6
|
143
146
|
requirements: []
|
144
147
|
rubyforge_project: vagrant-aws
|
145
|
-
rubygems_version: 2.0.
|
148
|
+
rubygems_version: 2.0.7
|
146
149
|
signing_key:
|
147
150
|
specification_version: 4
|
148
151
|
summary: Enables Vagrant to manage machines in EC2 and VPC.
|