vagrant-aws 0.4.0 → 0.4.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.
- 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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 724f1ec5fa0d9c7bd580c8e61ed48b89adc3f68f
|
4
|
+
data.tar.gz: 0d69fbb52adcb5587ba5e59289126f0bd2bfb6d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06e1e6f007d498b296c68d12c14852a5c58246a4707d6d0874091d59d05f0dc08caa3f7ce58b75ab91ae2ad3f1d3702a3ea07a12cf5109e3e90092417cf7fc3d
|
7
|
+
data.tar.gz: f4211a869114ac7f4ef6ce5d157e96850150a5e782dd006a37887fc67c85a9427fa19ae1ec23e072233f29704bddfe346df02eb11c4e5009c1e5283a0dfe9de6
|
data/CHANGELOG.md
CHANGED
@@ -1,10 +1,21 @@
|
|
1
|
+
# 0.5.0 (unreleased)
|
2
|
+
|
3
|
+
# 0.4.1 (December 17, 2013)
|
4
|
+
|
5
|
+
* Update fog.io to 1.18.0
|
6
|
+
* Fix sync folder user permissions (GH #175)
|
7
|
+
* Fix vagrant < 1.3.0 provisioner compatibility (GH #173)
|
8
|
+
* Add vagrant 1.4.0 multiple SSH key support (GH #172)
|
9
|
+
* Fix EIP deallocation bug (GH #164)
|
10
|
+
* Add (per shared folder) rsync exclude flag (GH #156)
|
11
|
+
|
1
12
|
# 0.4.0 (October 11, 2013)
|
2
13
|
|
3
14
|
* Handle EIP allocation error (GH #134)
|
4
15
|
* Implement halt and reload (GH #31)
|
5
16
|
* rsync ignores Vagrantfile
|
6
17
|
* warn if none of the security groups allows incoming SSH
|
7
|
-
* bump fog.io to
|
18
|
+
* bump fog.io to 1.15.0
|
8
19
|
* Fix rsync on windows (GH #77)
|
9
20
|
* Add `ssh_host_attribute` config (GH #143)
|
10
21
|
|
data/Gemfile
CHANGED
@@ -6,5 +6,5 @@ group :development do
|
|
6
6
|
# We depend on Vagrant for development, but we don't add it as a
|
7
7
|
# gem dependency because we expect to be installed within the
|
8
8
|
# Vagrant environment itself using `vagrant plugin`.
|
9
|
-
gem "vagrant", :git => "git://github.com/mitchellh/vagrant.git"
|
9
|
+
gem "vagrant", :git => "git://github.com/mitchellh/vagrant.git"
|
10
10
|
end
|
data/lib/vagrant-aws/action.rb
CHANGED
@@ -40,6 +40,8 @@ module VagrantPlugins
|
|
40
40
|
terminate_on_shutdown = region_config.terminate_on_shutdown
|
41
41
|
iam_instance_profile_arn = region_config.iam_instance_profile_arn
|
42
42
|
iam_instance_profile_name = region_config.iam_instance_profile_name
|
43
|
+
monitoring = region_config.monitoring
|
44
|
+
ebs_optimized = region_config.ebs_optimized
|
43
45
|
|
44
46
|
# If there is no keypair then warn the user
|
45
47
|
if !keypair
|
@@ -68,6 +70,8 @@ module VagrantPlugins
|
|
68
70
|
env[:ui].info(" -- User Data: #{user_data}") if user_data
|
69
71
|
env[:ui].info(" -- Block Device Mapping: #{block_device_mapping}") if block_device_mapping
|
70
72
|
env[:ui].info(" -- Terminate On Shutdown: #{terminate_on_shutdown}")
|
73
|
+
env[:ui].info(" -- Monitoring: #{monitoring}")
|
74
|
+
env[:ui].info(" -- EBS optimized: #{ebs_optimized}")
|
71
75
|
|
72
76
|
options = {
|
73
77
|
:availability_zone => availability_zone,
|
@@ -81,7 +85,9 @@ module VagrantPlugins
|
|
81
85
|
:tags => tags,
|
82
86
|
:user_data => user_data,
|
83
87
|
:block_device_mapping => block_device_mapping,
|
84
|
-
:instance_initiated_shutdown_behavior => terminate_on_shutdown == true ? "terminate" : nil
|
88
|
+
:instance_initiated_shutdown_behavior => terminate_on_shutdown == true ? "terminate" : nil,
|
89
|
+
:monitoring => monitoring,
|
90
|
+
:ebs_optimized => ebs_optimized
|
85
91
|
}
|
86
92
|
if !security_groups.empty?
|
87
93
|
security_group_key = options[:subnet_id].nil? ? :groups : :security_group_ids
|
@@ -24,17 +24,22 @@ module VagrantPlugins
|
|
24
24
|
|
25
25
|
ssh_info = env[:machine].ssh_info
|
26
26
|
|
27
|
+
unless Vagrant::Util::Which.which('rsync')
|
28
|
+
env[:ui].warn(I18n.t('vagrant_aws.rsync_not_found_warning', :side => "host"))
|
29
|
+
return
|
30
|
+
end
|
31
|
+
|
32
|
+
if env[:machine].communicate.execute('which rsync', :error_check => false) != 0
|
33
|
+
env[:ui].warn(I18n.t('vagrant_aws.rsync_not_found_warning', :side => "guest"))
|
34
|
+
return
|
35
|
+
end
|
36
|
+
|
27
37
|
env[:machine].config.vm.synced_folders.each do |id, data|
|
28
38
|
data = scoped_hash_override(data, :aws)
|
29
39
|
|
30
40
|
# Ignore disabled shared folders
|
31
41
|
next if data[:disabled]
|
32
42
|
|
33
|
-
unless Vagrant::Util::Which.which('rsync')
|
34
|
-
env[:ui].warn(I18n.t('vagrant_aws.rsync_not_found_warning'))
|
35
|
-
break
|
36
|
-
end
|
37
|
-
|
38
43
|
hostpath = File.expand_path(data[:hostpath], env[:root_path])
|
39
44
|
guestpath = data[:guestpath]
|
40
45
|
|
@@ -65,13 +70,16 @@ module VagrantPlugins
|
|
65
70
|
# Create the guest path
|
66
71
|
env[:machine].communicate.sudo("mkdir -p '#{guestpath}'")
|
67
72
|
env[:machine].communicate.sudo(
|
68
|
-
"chown #{ssh_info[:username]} '#{guestpath}'")
|
73
|
+
"chown -R #{ssh_info[:username]} '#{guestpath}'")
|
74
|
+
|
75
|
+
#collect rsync excludes specified :rsync_excludes=>['path1',...] in synced_folder options
|
76
|
+
excludes = ['.vagrant/', 'Vagrantfile', *Array(data[:rsync_excludes])].uniq
|
69
77
|
|
70
78
|
# Rsync over to the guest path using the SSH info
|
71
79
|
command = [
|
72
80
|
"rsync", "--verbose", "--archive", "-z",
|
73
|
-
|
74
|
-
"-e", "ssh -p #{ssh_info[:port]} -o StrictHostKeyChecking=no
|
81
|
+
*excludes.map{|e|['--exclude', e]}.flatten,
|
82
|
+
"-e", "ssh -p #{ssh_info[:port]} -o StrictHostKeyChecking=no #{ssh_key_options(ssh_info)}",
|
75
83
|
hostpath,
|
76
84
|
"#{ssh_info[:username]}@#{ssh_info[:host]}:#{guestpath}"]
|
77
85
|
|
@@ -90,6 +98,13 @@ module VagrantPlugins
|
|
90
98
|
end
|
91
99
|
end
|
92
100
|
end
|
101
|
+
|
102
|
+
private
|
103
|
+
|
104
|
+
def ssh_key_options(ssh_info)
|
105
|
+
# Ensure that `private_key_path` is an Array (for Vagrant < 1.4)
|
106
|
+
Array(ssh_info[:private_key_path]).map { |path| "-i '#{path}' " }.join
|
107
|
+
end
|
93
108
|
end
|
94
109
|
end
|
95
110
|
end
|
@@ -14,11 +14,6 @@ module VagrantPlugins
|
|
14
14
|
def call(env)
|
15
15
|
server = env[:aws_compute].servers.get(env[:machine].id)
|
16
16
|
|
17
|
-
# Destroy the server and remove the tracking ID
|
18
|
-
env[:ui].info(I18n.t("vagrant_aws.terminating"))
|
19
|
-
server.destroy
|
20
|
-
env[:machine].id = nil
|
21
|
-
|
22
17
|
# Release the elastic IP
|
23
18
|
ip_file = env[:machine].data_dir.join('elastic_ip')
|
24
19
|
if ip_file.file?
|
@@ -26,6 +21,11 @@ module VagrantPlugins
|
|
26
21
|
ip_file.delete
|
27
22
|
end
|
28
23
|
|
24
|
+
# Destroy the server and remove the tracking ID
|
25
|
+
env[:ui].info(I18n.t("vagrant_aws.terminating"))
|
26
|
+
server.destroy
|
27
|
+
env[:machine].id = nil
|
28
|
+
|
29
29
|
@app.call(env)
|
30
30
|
end
|
31
31
|
|
data/lib/vagrant-aws/config.rb
CHANGED
@@ -68,7 +68,7 @@ module VagrantPlugins
|
|
68
68
|
# be a list of IDs. For EC2, it can be either.
|
69
69
|
#
|
70
70
|
# @return [Array<String>]
|
71
|
-
|
71
|
+
attr_reader :security_groups
|
72
72
|
|
73
73
|
# The Amazon resource name (ARN) of the IAM Instance Profile
|
74
74
|
# to associate with the instance.
|
@@ -123,6 +123,16 @@ module VagrantPlugins
|
|
123
123
|
# @return [Symbol]
|
124
124
|
attr_accessor :ssh_host_attribute
|
125
125
|
|
126
|
+
# Enables Monitoring
|
127
|
+
#
|
128
|
+
# @return [Boolean]
|
129
|
+
attr_accessor :monitoring
|
130
|
+
|
131
|
+
# EBS optimized instance
|
132
|
+
#
|
133
|
+
# @return [Boolean]
|
134
|
+
attr_accessor :ebs_optimized
|
135
|
+
|
126
136
|
def initialize(region_specific=false)
|
127
137
|
@access_key_id = UNSET_VALUE
|
128
138
|
@ami = UNSET_VALUE
|
@@ -146,6 +156,8 @@ module VagrantPlugins
|
|
146
156
|
@iam_instance_profile_name = UNSET_VALUE
|
147
157
|
@terminate_on_shutdown = UNSET_VALUE
|
148
158
|
@ssh_host_attribute = UNSET_VALUE
|
159
|
+
@monitoring = UNSET_VALUE
|
160
|
+
@ebs_optimized = UNSET_VALUE
|
149
161
|
|
150
162
|
# Internal state (prefix with __ so they aren't automatically
|
151
163
|
# merged)
|
@@ -155,6 +167,12 @@ module VagrantPlugins
|
|
155
167
|
@__region_specific = region_specific
|
156
168
|
end
|
157
169
|
|
170
|
+
# set security_groups
|
171
|
+
def security_groups=(value)
|
172
|
+
# convert value to array if necessary
|
173
|
+
@security_groups = value.is_a?(Array) ? value : [value]
|
174
|
+
end
|
175
|
+
|
158
176
|
# Allows region-specific overrides of any of the settings on this
|
159
177
|
# configuration object. This allows the user to override things like
|
160
178
|
# AMI and keypair name for regions. Example:
|
@@ -272,6 +290,12 @@ module VagrantPlugins
|
|
272
290
|
# default to nil
|
273
291
|
@ssh_host_attribute = nil if @ssh_host_attribute == UNSET_VALUE
|
274
292
|
|
293
|
+
# default false
|
294
|
+
@monitoring = false if @monitoring == UNSET_VALUE
|
295
|
+
|
296
|
+
# default false
|
297
|
+
@ebs_optimized = false if @ebs_optimized == UNSET_VALUE
|
298
|
+
|
275
299
|
# Compile our region specific configurations only within
|
276
300
|
# NON-REGION-SPECIFIC configurations.
|
277
301
|
if !@__region_specific
|
data/lib/vagrant-aws/version.rb
CHANGED
data/locales/en.yml
CHANGED
@@ -17,7 +17,7 @@ en:
|
|
17
17
|
ready: |-
|
18
18
|
Machine is booted and ready for use!
|
19
19
|
rsync_not_found_warning: |-
|
20
|
-
Warning! Folder sync disabled because the rsync binary is missing.
|
20
|
+
Warning! Folder sync disabled because the rsync binary is missing in the %{side}.
|
21
21
|
Make sure rsync is installed and the binary can be found in the PATH.
|
22
22
|
rsync_folder: |-
|
23
23
|
Rsyncing folder: %{hostpath} => %{guestpath}
|
@@ -35,6 +35,8 @@ describe VagrantPlugins::AWS::Config do
|
|
35
35
|
its("elastic_ip") { should be_nil }
|
36
36
|
its("terminate_on_shutdown") { should == false }
|
37
37
|
its("ssh_host_attribute") { should be_nil }
|
38
|
+
its("monitoring") { should == false }
|
39
|
+
its("ebs_optimized") { should == false }
|
38
40
|
end
|
39
41
|
|
40
42
|
describe "overriding defaults" do
|
@@ -43,8 +45,8 @@ describe VagrantPlugins::AWS::Config do
|
|
43
45
|
# each of these attributes to "foo" in isolation, and reads the value
|
44
46
|
# and asserts the proper result comes back out.
|
45
47
|
[:access_key_id, :ami, :availability_zone, :instance_ready_timeout,
|
46
|
-
:instance_type, :keypair_name, :ssh_host_attribute,
|
47
|
-
:region, :secret_access_key, :security_groups,
|
48
|
+
:instance_type, :keypair_name, :ssh_host_attribute, :ebs_optimized,
|
49
|
+
:region, :secret_access_key, :security_groups, :monitoring,
|
48
50
|
:subnet_id, :tags, :elastic_ip, :terminate_on_shutdown,
|
49
51
|
:iam_instance_profile_arn, :iam_instance_profile_name,
|
50
52
|
:use_iam_profile, :user_data, :block_device_mapping].each do |attribute|
|
data/vagrant-aws.gemspec
CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
|
|
15
15
|
s.required_rubygems_version = ">= 1.3.6"
|
16
16
|
s.rubyforge_project = "vagrant-aws"
|
17
17
|
|
18
|
-
s.add_runtime_dependency "fog", "~> 1.
|
18
|
+
s.add_runtime_dependency "fog", "~> 1.18.0"
|
19
19
|
|
20
20
|
s.add_development_dependency "rake"
|
21
21
|
s.add_development_dependency "rspec-core", "~> 2.12.2"
|
@@ -0,0 +1,1105 @@
|
|
1
|
+
{
|
2
|
+
"auto_complete":
|
3
|
+
{
|
4
|
+
"selected_items":
|
5
|
+
[
|
6
|
+
[
|
7
|
+
"tes",
|
8
|
+
"test_sec_groups"
|
9
|
+
],
|
10
|
+
[
|
11
|
+
"lo",
|
12
|
+
"logger"
|
13
|
+
],
|
14
|
+
[
|
15
|
+
"server",
|
16
|
+
"server_attrs"
|
17
|
+
],
|
18
|
+
[
|
19
|
+
"en",
|
20
|
+
"env2"
|
21
|
+
],
|
22
|
+
[
|
23
|
+
"vaga",
|
24
|
+
"vagrant-aws"
|
25
|
+
]
|
26
|
+
]
|
27
|
+
},
|
28
|
+
"buffers":
|
29
|
+
[
|
30
|
+
{
|
31
|
+
"file": "lib/vagrant-aws/action.rb",
|
32
|
+
"settings":
|
33
|
+
{
|
34
|
+
"buffer_size": 5886,
|
35
|
+
"line_ending": "Unix"
|
36
|
+
}
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"file": "lib/vagrant-aws.rb",
|
40
|
+
"settings":
|
41
|
+
{
|
42
|
+
"buffer_size": 458,
|
43
|
+
"line_ending": "Unix"
|
44
|
+
}
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"file": "lib/vagrant-aws/plugin.rb",
|
48
|
+
"settings":
|
49
|
+
{
|
50
|
+
"buffer_size": 2061,
|
51
|
+
"line_ending": "Unix"
|
52
|
+
}
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"file": "lib/vagrant-aws/action/read_ssh_info.rb",
|
56
|
+
"settings":
|
57
|
+
{
|
58
|
+
"buffer_size": 1728,
|
59
|
+
"line_ending": "Unix"
|
60
|
+
}
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"file": "lib/vagrant-aws/action/start_instance.rb",
|
64
|
+
"settings":
|
65
|
+
{
|
66
|
+
"buffer_size": 2548,
|
67
|
+
"line_ending": "Unix"
|
68
|
+
}
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"file": "spec/vagrant-aws/config_spec.rb",
|
72
|
+
"settings":
|
73
|
+
{
|
74
|
+
"buffer_size": 7018,
|
75
|
+
"line_ending": "Unix"
|
76
|
+
}
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"contents": "Searching 42 files for \"private_ip_address\"\n\n/home/tralamazza/projects/vagrant-aws/README.md:\n 110 * `keypair_name` - The name of the keypair to use to bootstrap AMIs\n 111 which support it.\n 112: * `private_ip_address` - The private IP address to assign to an instance\n 113 within a [VPC](http://aws.amazon.com/vpc/)\n 114 * `region` - The region to start the instance in, such as \"us-east-1\"\n\n/home/tralamazza/projects/vagrant-aws/Vagrantfile:\n 23 aws.instance_ready_timeout = 5 * 60\n 24 # aws.elb = \"elbtest\"\n 25: # aws.ssh_host_attribute = :private_ip_address\n 26 \n 27 override.ssh.username = \"ubuntu\"\n\n/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action/read_ssh_info.rb:\n 34 get_region_config(machine.provider_config.region).ssh_host_attribute\n 35 # default host attributes to try. NOTE: Order matters!\n 36: ssh_attrs = [:public_ip_address, :dns_name, :private_ip_address]\n 37 ssh_attrs = (Array(ssh_host_attribute) + ssh_attrs).uniq if ssh_host_attribute\n 38 # try each attribute, get out on first value\n\n/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action/run_instance.rb:\n 31 instance_type = region_config.instance_type\n 32 keypair = region_config.keypair_name\n 33: private_ip_address = region_config.private_ip_address\n 34 security_groups = region_config.security_groups\n 35 subnet_id = region_config.subnet_id\n ..\n 64 env[:ui].info(\" -- IAM Instance Profile ARN: #{iam_instance_profile_arn}\") if iam_instance_profile_arn\n 65 env[:ui].info(\" -- IAM Instance Profile Name: #{iam_instance_profile_name}\") if iam_instance_profile_name\n 66: env[:ui].info(\" -- Private IP: #{private_ip_address}\") if private_ip_address\n 67 env[:ui].info(\" -- Elastic IP: #{elastic_ip}\") if elastic_ip\n 68 env[:ui].info(\" -- User Data: yes\") if user_data\n ..\n 79 :image_id => ami,\n 80 :key_name => keypair,\n 81: :private_ip_address => private_ip_address,\n 82 :subnet_id => subnet_id,\n 83 :iam_instance_profile_arn => iam_instance_profile_arn,\n\n/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/config.rb:\n 38 #\n 39 # @return [String]\n 40: attr_accessor :private_ip_address\n 41 \n 42 # Acquire and attach an elastic IP address (VPC).\n ..\n 118 # - :public_ip_address\n 119 # - :dns_name\n 120: # - :private_ip_address\n 121 # This attribute also accepts an array of symbols\n 122 #\n ...\n 141 @instance_type = UNSET_VALUE\n 142 @keypair_name = UNSET_VALUE\n 143: @private_ip_address = UNSET_VALUE\n 144 @region = UNSET_VALUE\n 145 @endpoint = UNSET_VALUE\n ...\n 257 \n 258 # Default the private IP to nil since VPC is not default\n 259: @private_ip_address = nil if @private_ip_address == UNSET_VALUE\n 260 \n 261 # Acquire an elastic IP if requested\n\n/home/tralamazza/projects/vagrant-aws/spec/vagrant-aws/config_spec.rb:\n 22 its(\"instance_type\") { should == \"m1.small\" }\n 23 its(\"keypair_name\") { should be_nil }\n 24: its(\"private_ip_address\") { should be_nil }\n 25 its(\"region\") { should == \"us-east-1\" }\n 26 its(\"secret_access_key\") { should be_nil }\n\n15 matches across 6 files\n",
|
80
|
+
"settings":
|
81
|
+
{
|
82
|
+
"buffer_size": 3664,
|
83
|
+
"line_ending": "Unix",
|
84
|
+
"name": "Find Results",
|
85
|
+
"scratch": true
|
86
|
+
}
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"file": "lib/vagrant-aws/action/run_instance.rb",
|
90
|
+
"settings":
|
91
|
+
{
|
92
|
+
"buffer_size": 10328,
|
93
|
+
"line_ending": "Unix"
|
94
|
+
}
|
95
|
+
},
|
96
|
+
{
|
97
|
+
"file": "lib/vagrant-aws/config.rb",
|
98
|
+
"settings":
|
99
|
+
{
|
100
|
+
"buffer_size": 11848,
|
101
|
+
"line_ending": "Unix"
|
102
|
+
}
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"file": "lib/vagrant-aws/action/sync_folders.rb",
|
106
|
+
"settings":
|
107
|
+
{
|
108
|
+
"buffer_size": 3698,
|
109
|
+
"line_ending": "Unix"
|
110
|
+
}
|
111
|
+
},
|
112
|
+
{
|
113
|
+
"file": "lib/vagrant-aws/cap/rsync_available.rb",
|
114
|
+
"settings":
|
115
|
+
{
|
116
|
+
"buffer_size": 157,
|
117
|
+
"line_ending": "Unix"
|
118
|
+
}
|
119
|
+
},
|
120
|
+
{
|
121
|
+
"file": "locales/en.yml",
|
122
|
+
"settings":
|
123
|
+
{
|
124
|
+
"buffer_size": 4298,
|
125
|
+
"line_ending": "Unix"
|
126
|
+
}
|
127
|
+
},
|
128
|
+
{
|
129
|
+
"file": "Vagrantfile",
|
130
|
+
"settings":
|
131
|
+
{
|
132
|
+
"buffer_size": 1059,
|
133
|
+
"line_ending": "Unix"
|
134
|
+
}
|
135
|
+
}
|
136
|
+
],
|
137
|
+
"build_system": "",
|
138
|
+
"command_palette":
|
139
|
+
{
|
140
|
+
"height": 392.0,
|
141
|
+
"selected_items":
|
142
|
+
[
|
143
|
+
[
|
144
|
+
"sta",
|
145
|
+
"Git: Status"
|
146
|
+
],
|
147
|
+
[
|
148
|
+
"com",
|
149
|
+
"Git: Commit"
|
150
|
+
],
|
151
|
+
[
|
152
|
+
"ad",
|
153
|
+
"Git: Add Current File"
|
154
|
+
],
|
155
|
+
[
|
156
|
+
"status",
|
157
|
+
"Git: Status"
|
158
|
+
],
|
159
|
+
[
|
160
|
+
"stat",
|
161
|
+
"Git: Status"
|
162
|
+
],
|
163
|
+
[
|
164
|
+
"statu",
|
165
|
+
"Git: Status"
|
166
|
+
],
|
167
|
+
[
|
168
|
+
"ssru",
|
169
|
+
"Set Syntax: Ruby"
|
170
|
+
],
|
171
|
+
[
|
172
|
+
"bra",
|
173
|
+
"Git: Change Branch"
|
174
|
+
],
|
175
|
+
[
|
176
|
+
"fetch",
|
177
|
+
"Git: Fetch"
|
178
|
+
],
|
179
|
+
[
|
180
|
+
"branh",
|
181
|
+
"Git: Change Branch"
|
182
|
+
],
|
183
|
+
[
|
184
|
+
"push",
|
185
|
+
"Git: Push Current Branch"
|
186
|
+
],
|
187
|
+
[
|
188
|
+
"qui",
|
189
|
+
"Git: Quick Commit"
|
190
|
+
],
|
191
|
+
[
|
192
|
+
"ins",
|
193
|
+
"Package Control: Install Package"
|
194
|
+
],
|
195
|
+
[
|
196
|
+
"branch",
|
197
|
+
"Git: Change Branch"
|
198
|
+
],
|
199
|
+
[
|
200
|
+
"bran",
|
201
|
+
"Git: Change Branch"
|
202
|
+
],
|
203
|
+
[
|
204
|
+
"pull",
|
205
|
+
"Git: Pull"
|
206
|
+
],
|
207
|
+
[
|
208
|
+
"pre",
|
209
|
+
"Markdown Preview: Python Markdown: Preview in Browser"
|
210
|
+
],
|
211
|
+
[
|
212
|
+
"previ",
|
213
|
+
"Markdown Preview: Python Markdown: Preview in Browser"
|
214
|
+
],
|
215
|
+
[
|
216
|
+
"prei",
|
217
|
+
"Markdown Preview: Python Markdown: Preview in Browser"
|
218
|
+
],
|
219
|
+
[
|
220
|
+
"prev",
|
221
|
+
"Markdown Preview: Python Markdown: Preview in Browser"
|
222
|
+
],
|
223
|
+
[
|
224
|
+
"preview",
|
225
|
+
"Markdown Preview: Python Markdown: Preview in Browser"
|
226
|
+
],
|
227
|
+
[
|
228
|
+
"instal",
|
229
|
+
"Package Control: Install Package"
|
230
|
+
],
|
231
|
+
[
|
232
|
+
"upda",
|
233
|
+
"Package Control: Upgrade Package"
|
234
|
+
],
|
235
|
+
[
|
236
|
+
"diff",
|
237
|
+
"Git: Diff All"
|
238
|
+
],
|
239
|
+
[
|
240
|
+
"add",
|
241
|
+
"Git: Add Current File"
|
242
|
+
],
|
243
|
+
[
|
244
|
+
"amen",
|
245
|
+
"Git: Amend Commit"
|
246
|
+
],
|
247
|
+
[
|
248
|
+
"amed",
|
249
|
+
"Git: Amend Commit"
|
250
|
+
],
|
251
|
+
[
|
252
|
+
"pul",
|
253
|
+
"Git: Pull"
|
254
|
+
],
|
255
|
+
[
|
256
|
+
"git pull",
|
257
|
+
"Git: Pull"
|
258
|
+
],
|
259
|
+
[
|
260
|
+
"sssh",
|
261
|
+
"Set Syntax: Shell Script (Bash)"
|
262
|
+
],
|
263
|
+
[
|
264
|
+
"ssruby",
|
265
|
+
"Set Syntax: Ruby"
|
266
|
+
],
|
267
|
+
[
|
268
|
+
"space",
|
269
|
+
"Indentation: Convert to Spaces"
|
270
|
+
],
|
271
|
+
[
|
272
|
+
"install",
|
273
|
+
"Package Control: Install Package"
|
274
|
+
],
|
275
|
+
[
|
276
|
+
"insta",
|
277
|
+
"Package Control: Install Package"
|
278
|
+
]
|
279
|
+
],
|
280
|
+
"width": 647.0
|
281
|
+
},
|
282
|
+
"console":
|
283
|
+
{
|
284
|
+
"height": 325.0,
|
285
|
+
"history":
|
286
|
+
[
|
287
|
+
"import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ','%20')).read()) "
|
288
|
+
]
|
289
|
+
},
|
290
|
+
"distraction_free":
|
291
|
+
{
|
292
|
+
"menu_visible": true,
|
293
|
+
"show_minimap": false,
|
294
|
+
"show_open_files": false,
|
295
|
+
"show_tabs": false,
|
296
|
+
"side_bar_visible": false,
|
297
|
+
"status_bar_visible": false
|
298
|
+
},
|
299
|
+
"file_history":
|
300
|
+
[
|
301
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action/start_instance.rb",
|
302
|
+
"/home/tralamazza/projects/vagrant-aws/Vagrantfile",
|
303
|
+
"/home/tralamazza/projects/vagrant-aws/README.md",
|
304
|
+
"/home/tralamazza/projects/vagrant-aws/locales/en.yml",
|
305
|
+
"/home/tralamazza/projects/vagrant/templates/locales/en.yml",
|
306
|
+
"/home/tralamazza/projects/vagrant/lib/vagrant/action/warden.rb",
|
307
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action/read_state.rb",
|
308
|
+
"/home/tralamazza/.config/sublime-text-3/Packages/User/MarkdownPreview.sublime-settings",
|
309
|
+
"/home/tralamazza/.config/sublime-text-3/Packages/Markdown Preview/MarkdownPreview.sublime-settings",
|
310
|
+
"/home/tralamazza/.config/sublime-text-3/Packages/GoSublime/CHANGELOG.md",
|
311
|
+
"/home/tralamazza/projects/vagrant-aws/vagrant-aws.gemspec",
|
312
|
+
"/home/tralamazza/projects/vagrant-aws/Gemfile",
|
313
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action/timed_provision.rb",
|
314
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action/run_instance.rb",
|
315
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action/wait_for_state.rb",
|
316
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action.rb",
|
317
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action/stop_instance.rb",
|
318
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action/message_already_created.rb",
|
319
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action/is_created.rb",
|
320
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action/is_stopped.rb",
|
321
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action/sync_folders.rb",
|
322
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/util/timer.rb",
|
323
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action/elb_deregister_instance.rb",
|
324
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action/elb_register_instance.rb",
|
325
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/util/elb.rb",
|
326
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action/connect_aws.rb",
|
327
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/errors.rb",
|
328
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/config.rb",
|
329
|
+
"/home/tralamazza/.config/sublime-text-3/Packages/TrailingSpaces/README.md",
|
330
|
+
"/home/tralamazza/.zshrc",
|
331
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/action/terminate_instance.rb",
|
332
|
+
"/home/tralamazza/projects/vagrant-aws/CHANGELOG.md",
|
333
|
+
"/home/tralamazza/projects/vagrant-aws/lib/vagrant-aws/version.rb",
|
334
|
+
"/home/tralamazza/projects/vagrant-aws/Rakefile",
|
335
|
+
"/home/tralamazza/projects/vagrant-aws/spec/vagrant-aws/config_spec.rb",
|
336
|
+
"/home/tralamazza/.config/sublime-text-3/Packages/GoSublime/USAGE.md",
|
337
|
+
"/home/tralamazza/.xinitrc",
|
338
|
+
"/home/tralamazza/.bash_profile",
|
339
|
+
"/home/tralamazza/.Xresources",
|
340
|
+
"/home/tralamazza/.xmonad/xmonad.hs",
|
341
|
+
"/home/tralamazza/.zprofile",
|
342
|
+
"/home/tralamazza/.xmobarrc",
|
343
|
+
"/home/tralamazza/.vimrc",
|
344
|
+
"/home/tralamazza/projects/vagrant-aws/.gitignore"
|
345
|
+
],
|
346
|
+
"find":
|
347
|
+
{
|
348
|
+
"height": 34.0
|
349
|
+
},
|
350
|
+
"find_in_files":
|
351
|
+
{
|
352
|
+
"height": 90.0,
|
353
|
+
"where_history":
|
354
|
+
[
|
355
|
+
"/home/tralamazza/projects/vagrant-aws",
|
356
|
+
"/home/tralamazza/projects/vagrant",
|
357
|
+
"/home/tralamazza/projects/vagrant-aws",
|
358
|
+
"/home/tralamazza/projects/vagrant",
|
359
|
+
"/home/tralamazza/projects/vagrant-aws",
|
360
|
+
""
|
361
|
+
]
|
362
|
+
},
|
363
|
+
"find_state":
|
364
|
+
{
|
365
|
+
"case_sensitive": false,
|
366
|
+
"find_history":
|
367
|
+
[
|
368
|
+
"private_ip_address",
|
369
|
+
"mkdi",
|
370
|
+
"rsync_folder",
|
371
|
+
"rsync_not_found_warning",
|
372
|
+
"communicate",
|
373
|
+
"secu",
|
374
|
+
"security_groups",
|
375
|
+
"secu",
|
376
|
+
"secur",
|
377
|
+
"security_groups",
|
378
|
+
"test_sec_groups",
|
379
|
+
"security_groups",
|
380
|
+
"allows_ssh_port",
|
381
|
+
"ocurred",
|
382
|
+
"ocurre",
|
383
|
+
"ocurred\n",
|
384
|
+
"occurred",
|
385
|
+
"occu",
|
386
|
+
"access_key_id",
|
387
|
+
"Quick Start",
|
388
|
+
"brow",
|
389
|
+
"pp",
|
390
|
+
"ssh",
|
391
|
+
"terminate_on_shutdown",
|
392
|
+
"launch_vpc_warning",
|
393
|
+
"vpc",
|
394
|
+
"subnet_id",
|
395
|
+
"region",
|
396
|
+
":machine",
|
397
|
+
"ReadSSHInfo",
|
398
|
+
"vagrant",
|
399
|
+
"timed",
|
400
|
+
"Provision",
|
401
|
+
"Provi",
|
402
|
+
"metrics",
|
403
|
+
"provi",
|
404
|
+
"metrics",
|
405
|
+
"provisioner_times",
|
406
|
+
"metrics",
|
407
|
+
"provisioner_times",
|
408
|
+
"TimedProvision",
|
409
|
+
"timedprovi",
|
410
|
+
"action_up",
|
411
|
+
"action_halt",
|
412
|
+
"MessageAlreadyCreated",
|
413
|
+
"b1",
|
414
|
+
"b2",
|
415
|
+
"action_halt",
|
416
|
+
"already_created",
|
417
|
+
"iscreated",
|
418
|
+
"rsync_folder",
|
419
|
+
"already_created",
|
420
|
+
"fog_error",
|
421
|
+
"timeout",
|
422
|
+
"region_config.instance_ready_timeout",
|
423
|
+
"force_halt",
|
424
|
+
"b2",
|
425
|
+
"IsCreated",
|
426
|
+
"action_ssh_run",
|
427
|
+
"action_prepare_boot",
|
428
|
+
"IsStopped",
|
429
|
+
"done",
|
430
|
+
"ok",
|
431
|
+
"id",
|
432
|
+
"elb",
|
433
|
+
"ok",
|
434
|
+
"destroy",
|
435
|
+
"terminat",
|
436
|
+
"TerminateInstance",
|
437
|
+
"MkdirError",
|
438
|
+
"raise",
|
439
|
+
"ElbDoesNotExistError",
|
440
|
+
">>>",
|
441
|
+
"do_elastic_ip",
|
442
|
+
"raise",
|
443
|
+
"block_de",
|
444
|
+
"should",
|
445
|
+
"described_class",
|
446
|
+
"block_device_mapping",
|
447
|
+
"tags",
|
448
|
+
"block_device_mapping",
|
449
|
+
"tags",
|
450
|
+
"instance_ready_timeout",
|
451
|
+
"backgroun",
|
452
|
+
"back",
|
453
|
+
"backgroun"
|
454
|
+
],
|
455
|
+
"highlight": true,
|
456
|
+
"in_selection": false,
|
457
|
+
"preserve_case": false,
|
458
|
+
"regex": false,
|
459
|
+
"replace_history":
|
460
|
+
[
|
461
|
+
],
|
462
|
+
"reverse": false,
|
463
|
+
"show_context": true,
|
464
|
+
"use_buffer2": true,
|
465
|
+
"whole_word": false,
|
466
|
+
"wrap": true
|
467
|
+
},
|
468
|
+
"groups":
|
469
|
+
[
|
470
|
+
{
|
471
|
+
"selected": 0,
|
472
|
+
"sheets":
|
473
|
+
[
|
474
|
+
{
|
475
|
+
"buffer": 0,
|
476
|
+
"file": "lib/vagrant-aws/action.rb",
|
477
|
+
"semi_transient": false,
|
478
|
+
"settings":
|
479
|
+
{
|
480
|
+
"buffer_size": 5886,
|
481
|
+
"regions":
|
482
|
+
{
|
483
|
+
},
|
484
|
+
"selection":
|
485
|
+
[
|
486
|
+
[
|
487
|
+
635,
|
488
|
+
635
|
489
|
+
]
|
490
|
+
],
|
491
|
+
"settings":
|
492
|
+
{
|
493
|
+
"syntax": "Packages/Ruby/Ruby.tmLanguage",
|
494
|
+
"tab_size": 2,
|
495
|
+
"translate_tabs_to_spaces": true
|
496
|
+
},
|
497
|
+
"translation.x": 0.0,
|
498
|
+
"translation.y": 0.0,
|
499
|
+
"zoom_level": 1.0
|
500
|
+
},
|
501
|
+
"type": "text"
|
502
|
+
},
|
503
|
+
{
|
504
|
+
"buffer": 1,
|
505
|
+
"file": "lib/vagrant-aws.rb",
|
506
|
+
"semi_transient": false,
|
507
|
+
"settings":
|
508
|
+
{
|
509
|
+
"buffer_size": 458,
|
510
|
+
"regions":
|
511
|
+
{
|
512
|
+
},
|
513
|
+
"selection":
|
514
|
+
[
|
515
|
+
[
|
516
|
+
0,
|
517
|
+
0
|
518
|
+
]
|
519
|
+
],
|
520
|
+
"settings":
|
521
|
+
{
|
522
|
+
"syntax": "Packages/Ruby/Ruby.tmLanguage",
|
523
|
+
"tab_size": 2,
|
524
|
+
"translate_tabs_to_spaces": true
|
525
|
+
},
|
526
|
+
"translation.x": 0.0,
|
527
|
+
"translation.y": 0.0,
|
528
|
+
"zoom_level": 1.0
|
529
|
+
},
|
530
|
+
"type": "text"
|
531
|
+
},
|
532
|
+
{
|
533
|
+
"buffer": 2,
|
534
|
+
"file": "lib/vagrant-aws/plugin.rb",
|
535
|
+
"semi_transient": false,
|
536
|
+
"settings":
|
537
|
+
{
|
538
|
+
"buffer_size": 2061,
|
539
|
+
"regions":
|
540
|
+
{
|
541
|
+
},
|
542
|
+
"selection":
|
543
|
+
[
|
544
|
+
[
|
545
|
+
853,
|
546
|
+
853
|
547
|
+
]
|
548
|
+
],
|
549
|
+
"settings":
|
550
|
+
{
|
551
|
+
"syntax": "Packages/Ruby/Ruby.tmLanguage",
|
552
|
+
"tab_size": 2,
|
553
|
+
"translate_tabs_to_spaces": true
|
554
|
+
},
|
555
|
+
"translation.x": 0.0,
|
556
|
+
"translation.y": 0.0,
|
557
|
+
"zoom_level": 1.0
|
558
|
+
},
|
559
|
+
"type": "text"
|
560
|
+
},
|
561
|
+
{
|
562
|
+
"buffer": 3,
|
563
|
+
"file": "lib/vagrant-aws/action/read_ssh_info.rb",
|
564
|
+
"semi_transient": false,
|
565
|
+
"settings":
|
566
|
+
{
|
567
|
+
"buffer_size": 1728,
|
568
|
+
"regions":
|
569
|
+
{
|
570
|
+
},
|
571
|
+
"selection":
|
572
|
+
[
|
573
|
+
[
|
574
|
+
367,
|
575
|
+
367
|
576
|
+
]
|
577
|
+
],
|
578
|
+
"settings":
|
579
|
+
{
|
580
|
+
"syntax": "Packages/Ruby/Ruby.tmLanguage",
|
581
|
+
"tab_size": 2,
|
582
|
+
"translate_tabs_to_spaces": true
|
583
|
+
},
|
584
|
+
"translation.x": 0.0,
|
585
|
+
"translation.y": 0.0,
|
586
|
+
"zoom_level": 1.0
|
587
|
+
},
|
588
|
+
"type": "text"
|
589
|
+
},
|
590
|
+
{
|
591
|
+
"buffer": 4,
|
592
|
+
"file": "lib/vagrant-aws/action/start_instance.rb",
|
593
|
+
"semi_transient": false,
|
594
|
+
"settings":
|
595
|
+
{
|
596
|
+
"buffer_size": 2548,
|
597
|
+
"regions":
|
598
|
+
{
|
599
|
+
},
|
600
|
+
"selection":
|
601
|
+
[
|
602
|
+
[
|
603
|
+
623,
|
604
|
+
623
|
605
|
+
]
|
606
|
+
],
|
607
|
+
"settings":
|
608
|
+
{
|
609
|
+
"syntax": "Packages/Ruby/Ruby.tmLanguage",
|
610
|
+
"tab_size": 2,
|
611
|
+
"translate_tabs_to_spaces": true
|
612
|
+
},
|
613
|
+
"translation.x": 0.0,
|
614
|
+
"translation.y": 0.0,
|
615
|
+
"zoom_level": 1.0
|
616
|
+
},
|
617
|
+
"type": "text"
|
618
|
+
},
|
619
|
+
{
|
620
|
+
"buffer": 5,
|
621
|
+
"file": "spec/vagrant-aws/config_spec.rb",
|
622
|
+
"semi_transient": false,
|
623
|
+
"settings":
|
624
|
+
{
|
625
|
+
"buffer_size": 7018,
|
626
|
+
"regions":
|
627
|
+
{
|
628
|
+
},
|
629
|
+
"selection":
|
630
|
+
[
|
631
|
+
[
|
632
|
+
339,
|
633
|
+
339
|
634
|
+
]
|
635
|
+
],
|
636
|
+
"settings":
|
637
|
+
{
|
638
|
+
"syntax": "Packages/Ruby/Ruby.tmLanguage",
|
639
|
+
"tab_size": 2,
|
640
|
+
"translate_tabs_to_spaces": true
|
641
|
+
},
|
642
|
+
"translation.x": 0.0,
|
643
|
+
"translation.y": 0.0,
|
644
|
+
"zoom_level": 1.0
|
645
|
+
},
|
646
|
+
"type": "text"
|
647
|
+
},
|
648
|
+
{
|
649
|
+
"buffer": 6,
|
650
|
+
"semi_transient": false,
|
651
|
+
"settings":
|
652
|
+
{
|
653
|
+
"buffer_size": 3664,
|
654
|
+
"regions":
|
655
|
+
{
|
656
|
+
"match":
|
657
|
+
{
|
658
|
+
"flags": 112,
|
659
|
+
"regions":
|
660
|
+
[
|
661
|
+
[
|
662
|
+
207,
|
663
|
+
225
|
664
|
+
],
|
665
|
+
[
|
666
|
+
577,
|
667
|
+
595
|
668
|
+
],
|
669
|
+
[
|
670
|
+
952,
|
671
|
+
970
|
672
|
+
],
|
673
|
+
[
|
674
|
+
1363,
|
675
|
+
1381
|
676
|
+
],
|
677
|
+
[
|
678
|
+
1401,
|
679
|
+
1419
|
680
|
+
],
|
681
|
+
[
|
682
|
+
1855,
|
683
|
+
1873
|
684
|
+
],
|
685
|
+
[
|
686
|
+
1880,
|
687
|
+
1898
|
688
|
+
],
|
689
|
+
[
|
690
|
+
2181,
|
691
|
+
2199
|
692
|
+
],
|
693
|
+
[
|
694
|
+
2210,
|
695
|
+
2228
|
696
|
+
],
|
697
|
+
[
|
698
|
+
2506,
|
699
|
+
2524
|
700
|
+
],
|
701
|
+
[
|
702
|
+
2686,
|
703
|
+
2704
|
704
|
+
],
|
705
|
+
[
|
706
|
+
2911,
|
707
|
+
2929
|
708
|
+
],
|
709
|
+
[
|
710
|
+
3156,
|
711
|
+
3174
|
712
|
+
],
|
713
|
+
[
|
714
|
+
3185,
|
715
|
+
3203
|
716
|
+
],
|
717
|
+
[
|
718
|
+
3482,
|
719
|
+
3500
|
720
|
+
]
|
721
|
+
],
|
722
|
+
"scope": ""
|
723
|
+
}
|
724
|
+
},
|
725
|
+
"selection":
|
726
|
+
[
|
727
|
+
[
|
728
|
+
1410,
|
729
|
+
1410
|
730
|
+
]
|
731
|
+
],
|
732
|
+
"settings":
|
733
|
+
{
|
734
|
+
"detect_indentation": false,
|
735
|
+
"line_numbers": false,
|
736
|
+
"output_tag": 1,
|
737
|
+
"result_base_dir": "",
|
738
|
+
"result_file_regex": "^([A-Za-z\\\\/<].*):$",
|
739
|
+
"result_line_regex": "^ +([0-9]+):",
|
740
|
+
"scroll_past_end": true,
|
741
|
+
"syntax": "Packages/Default/Find Results.hidden-tmLanguage"
|
742
|
+
},
|
743
|
+
"translation.x": 0.0,
|
744
|
+
"translation.y": 0.0,
|
745
|
+
"zoom_level": 1.0
|
746
|
+
},
|
747
|
+
"type": "text"
|
748
|
+
},
|
749
|
+
{
|
750
|
+
"buffer": 7,
|
751
|
+
"file": "lib/vagrant-aws/action/run_instance.rb",
|
752
|
+
"semi_transient": false,
|
753
|
+
"settings":
|
754
|
+
{
|
755
|
+
"buffer_size": 10328,
|
756
|
+
"regions":
|
757
|
+
{
|
758
|
+
},
|
759
|
+
"selection":
|
760
|
+
[
|
761
|
+
[
|
762
|
+
625,
|
763
|
+
625
|
764
|
+
]
|
765
|
+
],
|
766
|
+
"settings":
|
767
|
+
{
|
768
|
+
"syntax": "Packages/Ruby/Ruby.tmLanguage",
|
769
|
+
"tab_size": 2,
|
770
|
+
"translate_tabs_to_spaces": true
|
771
|
+
},
|
772
|
+
"translation.x": 0.0,
|
773
|
+
"translation.y": 0.0,
|
774
|
+
"zoom_level": 1.0
|
775
|
+
},
|
776
|
+
"type": "text"
|
777
|
+
},
|
778
|
+
{
|
779
|
+
"buffer": 8,
|
780
|
+
"file": "lib/vagrant-aws/config.rb",
|
781
|
+
"semi_transient": false,
|
782
|
+
"settings":
|
783
|
+
{
|
784
|
+
"buffer_size": 11848,
|
785
|
+
"regions":
|
786
|
+
{
|
787
|
+
},
|
788
|
+
"selection":
|
789
|
+
[
|
790
|
+
[
|
791
|
+
940,
|
792
|
+
940
|
793
|
+
]
|
794
|
+
],
|
795
|
+
"settings":
|
796
|
+
{
|
797
|
+
"syntax": "Packages/Ruby/Ruby.tmLanguage",
|
798
|
+
"tab_size": 2,
|
799
|
+
"translate_tabs_to_spaces": true
|
800
|
+
},
|
801
|
+
"translation.x": 0.0,
|
802
|
+
"translation.y": 0.0,
|
803
|
+
"zoom_level": 1.0
|
804
|
+
},
|
805
|
+
"type": "text"
|
806
|
+
},
|
807
|
+
{
|
808
|
+
"buffer": 9,
|
809
|
+
"file": "lib/vagrant-aws/action/sync_folders.rb",
|
810
|
+
"semi_transient": false,
|
811
|
+
"settings":
|
812
|
+
{
|
813
|
+
"buffer_size": 3698,
|
814
|
+
"regions":
|
815
|
+
{
|
816
|
+
},
|
817
|
+
"selection":
|
818
|
+
[
|
819
|
+
[
|
820
|
+
760,
|
821
|
+
760
|
822
|
+
]
|
823
|
+
],
|
824
|
+
"settings":
|
825
|
+
{
|
826
|
+
"syntax": "Packages/Ruby/Ruby.tmLanguage",
|
827
|
+
"tab_size": 2,
|
828
|
+
"translate_tabs_to_spaces": true
|
829
|
+
},
|
830
|
+
"translation.x": 0.0,
|
831
|
+
"translation.y": 75.0,
|
832
|
+
"zoom_level": 1.0
|
833
|
+
},
|
834
|
+
"type": "text"
|
835
|
+
},
|
836
|
+
{
|
837
|
+
"buffer": 10,
|
838
|
+
"file": "lib/vagrant-aws/cap/rsync_available.rb",
|
839
|
+
"semi_transient": false,
|
840
|
+
"settings":
|
841
|
+
{
|
842
|
+
"buffer_size": 157,
|
843
|
+
"regions":
|
844
|
+
{
|
845
|
+
},
|
846
|
+
"selection":
|
847
|
+
[
|
848
|
+
[
|
849
|
+
139,
|
850
|
+
139
|
851
|
+
]
|
852
|
+
],
|
853
|
+
"settings":
|
854
|
+
{
|
855
|
+
"syntax": "Packages/Ruby/Ruby.tmLanguage"
|
856
|
+
},
|
857
|
+
"translation.x": 0.0,
|
858
|
+
"translation.y": 0.0,
|
859
|
+
"zoom_level": 1.0
|
860
|
+
},
|
861
|
+
"type": "text"
|
862
|
+
},
|
863
|
+
{
|
864
|
+
"buffer": 11,
|
865
|
+
"file": "locales/en.yml",
|
866
|
+
"semi_transient": false,
|
867
|
+
"settings":
|
868
|
+
{
|
869
|
+
"buffer_size": 4298,
|
870
|
+
"regions":
|
871
|
+
{
|
872
|
+
},
|
873
|
+
"selection":
|
874
|
+
[
|
875
|
+
[
|
876
|
+
852,
|
877
|
+
852
|
878
|
+
]
|
879
|
+
],
|
880
|
+
"settings":
|
881
|
+
{
|
882
|
+
"syntax": "Packages/YAML/YAML.tmLanguage",
|
883
|
+
"tab_size": 2,
|
884
|
+
"translate_tabs_to_spaces": true
|
885
|
+
},
|
886
|
+
"translation.x": 0.0,
|
887
|
+
"translation.y": 0.0,
|
888
|
+
"zoom_level": 1.0
|
889
|
+
},
|
890
|
+
"type": "text"
|
891
|
+
},
|
892
|
+
{
|
893
|
+
"buffer": 12,
|
894
|
+
"file": "Vagrantfile",
|
895
|
+
"semi_transient": false,
|
896
|
+
"settings":
|
897
|
+
{
|
898
|
+
"buffer_size": 1059,
|
899
|
+
"regions":
|
900
|
+
{
|
901
|
+
},
|
902
|
+
"selection":
|
903
|
+
[
|
904
|
+
[
|
905
|
+
1059,
|
906
|
+
1059
|
907
|
+
]
|
908
|
+
],
|
909
|
+
"settings":
|
910
|
+
{
|
911
|
+
"syntax": "Packages/Ruby/Ruby.tmLanguage",
|
912
|
+
"tab_size": 4,
|
913
|
+
"translate_tabs_to_spaces": true
|
914
|
+
},
|
915
|
+
"translation.x": 0.0,
|
916
|
+
"translation.y": 0.0,
|
917
|
+
"zoom_level": 1.0
|
918
|
+
},
|
919
|
+
"type": "text"
|
920
|
+
}
|
921
|
+
]
|
922
|
+
}
|
923
|
+
],
|
924
|
+
"incremental_find":
|
925
|
+
{
|
926
|
+
"height": 23.0
|
927
|
+
},
|
928
|
+
"input":
|
929
|
+
{
|
930
|
+
"height": 31.0
|
931
|
+
},
|
932
|
+
"layout":
|
933
|
+
{
|
934
|
+
"cells":
|
935
|
+
[
|
936
|
+
[
|
937
|
+
0,
|
938
|
+
0,
|
939
|
+
1,
|
940
|
+
1
|
941
|
+
]
|
942
|
+
],
|
943
|
+
"cols":
|
944
|
+
[
|
945
|
+
0.0,
|
946
|
+
1.0
|
947
|
+
],
|
948
|
+
"rows":
|
949
|
+
[
|
950
|
+
0.0,
|
951
|
+
1.0
|
952
|
+
]
|
953
|
+
},
|
954
|
+
"menu_visible": true,
|
955
|
+
"output.GoSublime-main-output":
|
956
|
+
{
|
957
|
+
"height": 100.0
|
958
|
+
},
|
959
|
+
"output.GoSublime-output":
|
960
|
+
{
|
961
|
+
"height": 100.0
|
962
|
+
},
|
963
|
+
"output.MarGo-output":
|
964
|
+
{
|
965
|
+
"height": 100.0
|
966
|
+
},
|
967
|
+
"output.git":
|
968
|
+
{
|
969
|
+
"height": 194.0
|
970
|
+
},
|
971
|
+
"project": "vagrant-aws.sublime-project",
|
972
|
+
"replace":
|
973
|
+
{
|
974
|
+
"height": 42.0
|
975
|
+
},
|
976
|
+
"save_all_on_build": true,
|
977
|
+
"select_file":
|
978
|
+
{
|
979
|
+
"height": 0.0,
|
980
|
+
"selected_items":
|
981
|
+
[
|
982
|
+
[
|
983
|
+
"vagran",
|
984
|
+
"Vagrantfile"
|
985
|
+
],
|
986
|
+
[
|
987
|
+
"vagra",
|
988
|
+
"Vagrantfile"
|
989
|
+
],
|
990
|
+
[
|
991
|
+
"en.",
|
992
|
+
"locales/en.yml"
|
993
|
+
],
|
994
|
+
[
|
995
|
+
"fol",
|
996
|
+
"lib/vagrant-aws/action/sync_folders.rb"
|
997
|
+
],
|
998
|
+
[
|
999
|
+
"run",
|
1000
|
+
"lib/vagrant-aws/action/run_instance.rb"
|
1001
|
+
],
|
1002
|
+
[
|
1003
|
+
"en",
|
1004
|
+
"locales/en.yml"
|
1005
|
+
],
|
1006
|
+
[
|
1007
|
+
"red",
|
1008
|
+
"README.md"
|
1009
|
+
],
|
1010
|
+
[
|
1011
|
+
"read",
|
1012
|
+
"lib/vagrant-aws/action/read_state.rb"
|
1013
|
+
],
|
1014
|
+
[
|
1015
|
+
"spec",
|
1016
|
+
"spec/vagrant-aws/config_spec.rb"
|
1017
|
+
],
|
1018
|
+
[
|
1019
|
+
"config",
|
1020
|
+
"lib/vagrant-aws/config.rb"
|
1021
|
+
],
|
1022
|
+
[
|
1023
|
+
"readss",
|
1024
|
+
"lib/vagrant-aws/action/read_ssh_info.rb"
|
1025
|
+
],
|
1026
|
+
[
|
1027
|
+
"timed",
|
1028
|
+
"lib/vagrant-aws/action/timed_provision.rb"
|
1029
|
+
],
|
1030
|
+
[
|
1031
|
+
"actio",
|
1032
|
+
"lib/vagrant-aws/action.rb"
|
1033
|
+
],
|
1034
|
+
[
|
1035
|
+
"stop",
|
1036
|
+
"lib/vagrant-aws/action/stop_instance.rb"
|
1037
|
+
],
|
1038
|
+
[
|
1039
|
+
"start",
|
1040
|
+
"lib/vagrant-aws/action/start_instance.rb"
|
1041
|
+
],
|
1042
|
+
[
|
1043
|
+
"is",
|
1044
|
+
"lib/vagrant-aws/action/is_stopped.rb"
|
1045
|
+
],
|
1046
|
+
[
|
1047
|
+
"action",
|
1048
|
+
"lib/vagrant-aws/action.rb"
|
1049
|
+
],
|
1050
|
+
[
|
1051
|
+
"elb",
|
1052
|
+
"lib/vagrant-aws/util/elb.rb"
|
1053
|
+
],
|
1054
|
+
[
|
1055
|
+
"rea",
|
1056
|
+
"README.md"
|
1057
|
+
],
|
1058
|
+
[
|
1059
|
+
"conn",
|
1060
|
+
"lib/vagrant-aws/action/connect_aws.rb"
|
1061
|
+
],
|
1062
|
+
[
|
1063
|
+
"termi",
|
1064
|
+
"lib/vagrant-aws/action/terminate_instance.rb"
|
1065
|
+
],
|
1066
|
+
[
|
1067
|
+
"error",
|
1068
|
+
"lib/vagrant-aws/errors.rb"
|
1069
|
+
]
|
1070
|
+
],
|
1071
|
+
"width": 0.0
|
1072
|
+
},
|
1073
|
+
"select_project":
|
1074
|
+
{
|
1075
|
+
"height": 500.0,
|
1076
|
+
"selected_items":
|
1077
|
+
[
|
1078
|
+
[
|
1079
|
+
"",
|
1080
|
+
"~/projects/vagrant.sublime-project"
|
1081
|
+
]
|
1082
|
+
],
|
1083
|
+
"width": 380.0
|
1084
|
+
},
|
1085
|
+
"select_symbol":
|
1086
|
+
{
|
1087
|
+
"height": 0.0,
|
1088
|
+
"selected_items":
|
1089
|
+
[
|
1090
|
+
],
|
1091
|
+
"width": 0.0
|
1092
|
+
},
|
1093
|
+
"settings":
|
1094
|
+
{
|
1095
|
+
},
|
1096
|
+
"show_minimap": true,
|
1097
|
+
"show_open_files": false,
|
1098
|
+
"show_tabs": true,
|
1099
|
+
"side_bar_visible": true,
|
1100
|
+
"side_bar_width": 208.0,
|
1101
|
+
"status_bar_visible": true,
|
1102
|
+
"template_settings":
|
1103
|
+
{
|
1104
|
+
}
|
1105
|
+
}
|