vagrant-aws 0.4.1 → 0.5.0
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/.gitignore +4 -0
- data/.rspec +1 -0
- data/CHANGELOG.md +9 -0
- data/LICENSE +1 -1
- data/README.md +31 -1
- data/lib/vagrant-aws/action.rb +4 -0
- data/lib/vagrant-aws/action/connect_aws.rb +1 -0
- data/lib/vagrant-aws/action/elb_deregister_instance.rb +24 -0
- data/lib/vagrant-aws/action/elb_register_instance.rb +24 -0
- data/lib/vagrant-aws/action/run_instance.rb +4 -1
- data/lib/vagrant-aws/action/sync_folders.rb +21 -2
- data/lib/vagrant-aws/config.rb +25 -2
- data/lib/vagrant-aws/errors.rb +4 -0
- data/lib/vagrant-aws/util/elb.rb +56 -0
- data/lib/vagrant-aws/version.rb +1 -1
- data/locales/en.yml +19 -3
- data/spec/spec_helper.rb +1 -0
- data/spec/vagrant-aws/actions/syncfolders_spec.rb +28 -0
- data/spec/vagrant-aws/config_spec.rb +7 -1
- data/vagrant-aws.gemspec +1 -1
- metadata +46 -41
- data/lib/vagrant-aws/cap/rsync_available.rb +0 -7
- data/vagrant-aws.sublime-project +0 -9
- data/vagrant-aws.sublime-workspace +0 -1105
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'vagrant-aws/action/sync_folders'
|
3
|
+
|
4
|
+
describe VagrantPlugins::AWS::Action::SyncFolders do
|
5
|
+
let(:app) { nil }
|
6
|
+
let(:env) { {} }
|
7
|
+
subject(:action) { described_class.new(app, env) }
|
8
|
+
|
9
|
+
describe '#ssh_options_to_args' do
|
10
|
+
subject(:args) { action.ssh_options_to_args(options) }
|
11
|
+
|
12
|
+
context 'with no ssh options' do
|
13
|
+
let(:options) { [] }
|
14
|
+
|
15
|
+
it { should eql [] }
|
16
|
+
end
|
17
|
+
|
18
|
+
context 'with one option' do
|
19
|
+
let(:options) { ['StrictHostKeyChecking=no'] }
|
20
|
+
it { should eql ["-o 'StrictHostKeyChecking=no'"] }
|
21
|
+
end
|
22
|
+
|
23
|
+
context 'with multiple options' do
|
24
|
+
let(:options) { ['SHKC=no', 'Port=222'] }
|
25
|
+
it { should eql ["-o 'SHKC=no'", "-o 'Port=222'"] }
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -37,6 +37,7 @@ describe VagrantPlugins::AWS::Config do
|
|
37
37
|
its("ssh_host_attribute") { should be_nil }
|
38
38
|
its("monitoring") { should == false }
|
39
39
|
its("ebs_optimized") { should == false }
|
40
|
+
its("associate_public_ip") { should == false }
|
40
41
|
end
|
41
42
|
|
42
43
|
describe "overriding defaults" do
|
@@ -46,7 +47,7 @@ describe VagrantPlugins::AWS::Config do
|
|
46
47
|
# and asserts the proper result comes back out.
|
47
48
|
[:access_key_id, :ami, :availability_zone, :instance_ready_timeout,
|
48
49
|
:instance_type, :keypair_name, :ssh_host_attribute, :ebs_optimized,
|
49
|
-
:region, :secret_access_key, :
|
50
|
+
:region, :secret_access_key, :monitoring, :associate_public_ip,
|
50
51
|
:subnet_id, :tags, :elastic_ip, :terminate_on_shutdown,
|
51
52
|
:iam_instance_profile_arn, :iam_instance_profile_name,
|
52
53
|
:use_iam_profile, :user_data, :block_device_mapping].each do |attribute|
|
@@ -57,6 +58,11 @@ describe VagrantPlugins::AWS::Config do
|
|
57
58
|
instance.send(attribute).should == "foo"
|
58
59
|
end
|
59
60
|
end
|
61
|
+
it "should not default security_groups if overridden" do
|
62
|
+
instance.security_groups = "foo"
|
63
|
+
instance.finalize!
|
64
|
+
instance.security_groups.should == ["foo"]
|
65
|
+
end
|
60
66
|
end
|
61
67
|
|
62
68
|
describe "getting credentials from environment" do
|
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.22"
|
19
19
|
|
20
20
|
s.add_development_dependency "rake"
|
21
21
|
s.add_development_dependency "rspec-core", "~> 2.12.2"
|
metadata
CHANGED
@@ -1,83 +1,83 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-aws
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mitchell Hashimoto
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2014-06-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fog
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - ~>
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: '1.22'
|
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.22'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rspec-core
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - ~>
|
45
|
+
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: 2.12.2
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - ~>
|
52
|
+
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: 2.12.2
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rspec-expectations
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - ~>
|
59
|
+
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: 2.12.1
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - ~>
|
66
|
+
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 2.12.1
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rspec-mocks
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- - ~>
|
73
|
+
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
75
|
version: 2.12.1
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- - ~>
|
80
|
+
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: 2.12.1
|
83
83
|
description: Enables Vagrant to manage machines in EC2 and VPC.
|
@@ -86,45 +86,50 @@ executables: []
|
|
86
86
|
extensions: []
|
87
87
|
extra_rdoc_files: []
|
88
88
|
files:
|
89
|
-
-
|
89
|
+
- ".gitignore"
|
90
|
+
- ".rspec"
|
91
|
+
- CHANGELOG.md
|
92
|
+
- Gemfile
|
90
93
|
- LICENSE
|
94
|
+
- README.md
|
95
|
+
- Rakefile
|
91
96
|
- dummy.box
|
92
|
-
-
|
97
|
+
- example_box/README.md
|
98
|
+
- example_box/metadata.json
|
99
|
+
- lib/vagrant-aws.rb
|
93
100
|
- lib/vagrant-aws/action.rb
|
94
|
-
- lib/vagrant-aws/
|
95
|
-
- lib/vagrant-aws/
|
96
|
-
- lib/vagrant-aws/action/
|
97
|
-
- lib/vagrant-aws/action/
|
98
|
-
- lib/vagrant-aws/action/run_instance.rb
|
101
|
+
- lib/vagrant-aws/action/.sync_folders.rb.swp
|
102
|
+
- lib/vagrant-aws/action/connect_aws.rb
|
103
|
+
- lib/vagrant-aws/action/elb_deregister_instance.rb
|
104
|
+
- lib/vagrant-aws/action/elb_register_instance.rb
|
99
105
|
- lib/vagrant-aws/action/is_created.rb
|
106
|
+
- lib/vagrant-aws/action/is_stopped.rb
|
107
|
+
- lib/vagrant-aws/action/message_already_created.rb
|
108
|
+
- lib/vagrant-aws/action/message_not_created.rb
|
100
109
|
- lib/vagrant-aws/action/message_will_not_destroy.rb
|
101
|
-
- lib/vagrant-aws/action/terminate_instance.rb
|
102
110
|
- lib/vagrant-aws/action/read_ssh_info.rb
|
103
|
-
- lib/vagrant-aws/action/start_instance.rb
|
104
111
|
- lib/vagrant-aws/action/read_state.rb
|
105
|
-
- lib/vagrant-aws/action/
|
112
|
+
- lib/vagrant-aws/action/run_instance.rb
|
113
|
+
- lib/vagrant-aws/action/start_instance.rb
|
114
|
+
- lib/vagrant-aws/action/stop_instance.rb
|
106
115
|
- lib/vagrant-aws/action/sync_folders.rb
|
107
|
-
- lib/vagrant-aws/action/
|
108
|
-
- lib/vagrant-aws/action/message_already_created.rb
|
116
|
+
- lib/vagrant-aws/action/terminate_instance.rb
|
109
117
|
- lib/vagrant-aws/action/timed_provision.rb
|
118
|
+
- lib/vagrant-aws/action/wait_for_state.rb
|
110
119
|
- lib/vagrant-aws/action/warn_networks.rb
|
111
|
-
- lib/vagrant-aws/action/is_stopped.rb
|
112
|
-
- lib/vagrant-aws/provider.rb
|
113
120
|
- lib/vagrant-aws/config.rb
|
114
121
|
- lib/vagrant-aws/errors.rb
|
122
|
+
- lib/vagrant-aws/plugin.rb
|
123
|
+
- lib/vagrant-aws/provider.rb
|
124
|
+
- lib/vagrant-aws/util/elb.rb
|
125
|
+
- lib/vagrant-aws/util/timer.rb
|
115
126
|
- lib/vagrant-aws/version.rb
|
116
|
-
- lib/vagrant-aws.rb
|
117
|
-
- Gemfile
|
118
|
-
- CHANGELOG.md
|
119
|
-
- spec/vagrant-aws/config_spec.rb
|
120
127
|
- locales/en.yml
|
121
|
-
-
|
122
|
-
-
|
123
|
-
-
|
124
|
-
-
|
128
|
+
- spec/spec_helper.rb
|
129
|
+
- spec/vagrant-aws/actions/.syncfolders_spec.rb.swp
|
130
|
+
- spec/vagrant-aws/actions/syncfolders_spec.rb
|
131
|
+
- spec/vagrant-aws/config_spec.rb
|
125
132
|
- vagrant-aws.gemspec
|
126
|
-
- vagrant-aws.sublime-workspace
|
127
|
-
- .gitignore
|
128
133
|
homepage: http://www.vagrantup.com
|
129
134
|
licenses:
|
130
135
|
- MIT
|
@@ -135,17 +140,17 @@ require_paths:
|
|
135
140
|
- lib
|
136
141
|
required_ruby_version: !ruby/object:Gem::Requirement
|
137
142
|
requirements:
|
138
|
-
- -
|
143
|
+
- - ">="
|
139
144
|
- !ruby/object:Gem::Version
|
140
145
|
version: '0'
|
141
146
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
142
147
|
requirements:
|
143
|
-
- -
|
148
|
+
- - ">="
|
144
149
|
- !ruby/object:Gem::Version
|
145
150
|
version: 1.3.6
|
146
151
|
requirements: []
|
147
152
|
rubyforge_project: vagrant-aws
|
148
|
-
rubygems_version: 2.
|
153
|
+
rubygems_version: 2.2.2
|
149
154
|
signing_key:
|
150
155
|
specification_version: 4
|
151
156
|
summary: Enables Vagrant to manage machines in EC2 and VPC.
|
data/vagrant-aws.sublime-project
DELETED
@@ -1,1105 +0,0 @@
|
|
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
|
-
}
|