tass 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (27) hide show
  1. checksums.yaml +7 -0
  2. data/bin/tass +97 -0
  3. data/lib/tapjoy/autoscaling_bootstrap/AWS/Autoscaling/group.rb +61 -0
  4. data/lib/tapjoy/autoscaling_bootstrap/AWS/Autoscaling/launch_config.rb +45 -0
  5. data/lib/tapjoy/autoscaling_bootstrap/AWS/autoscaling.rb +45 -0
  6. data/lib/tapjoy/autoscaling_bootstrap/AWS/cloudwatch.rb +41 -0
  7. data/lib/tapjoy/autoscaling_bootstrap/AWS/ec2.rb +23 -0
  8. data/lib/tapjoy/autoscaling_bootstrap/AWS/elb.rb +55 -0
  9. data/lib/tapjoy/autoscaling_bootstrap/alerts/monitoring.rb +38 -0
  10. data/lib/tapjoy/autoscaling_bootstrap/alerts/scaling.rb +75 -0
  11. data/lib/tapjoy/autoscaling_bootstrap/alerts.rb +7 -0
  12. data/lib/tapjoy/autoscaling_bootstrap/audit.rb +49 -0
  13. data/lib/tapjoy/autoscaling_bootstrap/autoscaling/config.rb +38 -0
  14. data/lib/tapjoy/autoscaling_bootstrap/autoscaling/group.rb +113 -0
  15. data/lib/tapjoy/autoscaling_bootstrap/autoscaling/policy.rb +37 -0
  16. data/lib/tapjoy/autoscaling_bootstrap/autoscaling.rb +6 -0
  17. data/lib/tapjoy/autoscaling_bootstrap/autoscaling_group.rb +59 -0
  18. data/lib/tapjoy/autoscaling_bootstrap/aws.rb +7 -0
  19. data/lib/tapjoy/autoscaling_bootstrap/cloudwatch.rb +29 -0
  20. data/lib/tapjoy/autoscaling_bootstrap/configure_autoscaler.rb +40 -0
  21. data/lib/tapjoy/autoscaling_bootstrap/elb.rb +56 -0
  22. data/lib/tapjoy/autoscaling_bootstrap/errors/elb.rb +48 -0
  23. data/lib/tapjoy/autoscaling_bootstrap/errors.rb +30 -0
  24. data/lib/tapjoy/autoscaling_bootstrap/launch_configuration.rb +42 -0
  25. data/lib/tapjoy/autoscaling_bootstrap/version.rb +11 -0
  26. data/lib/tapjoy/autoscaling_bootstrap.rb +165 -0
  27. metadata +182 -0
metadata ADDED
@@ -0,0 +1,182 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tass
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Ali Tayarani
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-06-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: trollop
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: highline
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: aws-sdk
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: hashdiff
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 0.2.2
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.2.2
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '3.2'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '3.2'
83
+ - !ruby/object:Gem::Dependency
84
+ name: activesupport
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '4.2'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '4.2'
97
+ - !ruby/object:Gem::Dependency
98
+ name: webmock
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '1.20'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '1.20'
111
+ - !ruby/object:Gem::Dependency
112
+ name: vcr
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '2.9'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '2.9'
125
+ description: TASS is the suite of tools that the Tapjoy Operations team uses to manage
126
+ autoscaling groups and launch configurations.
127
+ email: ali.tayarani@tapjoy.com
128
+ executables:
129
+ - tass
130
+ extensions: []
131
+ extra_rdoc_files: []
132
+ files:
133
+ - bin/tass
134
+ - lib/tapjoy/autoscaling_bootstrap.rb
135
+ - lib/tapjoy/autoscaling_bootstrap/AWS/Autoscaling/group.rb
136
+ - lib/tapjoy/autoscaling_bootstrap/AWS/Autoscaling/launch_config.rb
137
+ - lib/tapjoy/autoscaling_bootstrap/AWS/autoscaling.rb
138
+ - lib/tapjoy/autoscaling_bootstrap/AWS/cloudwatch.rb
139
+ - lib/tapjoy/autoscaling_bootstrap/AWS/ec2.rb
140
+ - lib/tapjoy/autoscaling_bootstrap/AWS/elb.rb
141
+ - lib/tapjoy/autoscaling_bootstrap/alerts.rb
142
+ - lib/tapjoy/autoscaling_bootstrap/alerts/monitoring.rb
143
+ - lib/tapjoy/autoscaling_bootstrap/alerts/scaling.rb
144
+ - lib/tapjoy/autoscaling_bootstrap/audit.rb
145
+ - lib/tapjoy/autoscaling_bootstrap/autoscaling.rb
146
+ - lib/tapjoy/autoscaling_bootstrap/autoscaling/config.rb
147
+ - lib/tapjoy/autoscaling_bootstrap/autoscaling/group.rb
148
+ - lib/tapjoy/autoscaling_bootstrap/autoscaling/policy.rb
149
+ - lib/tapjoy/autoscaling_bootstrap/autoscaling_group.rb
150
+ - lib/tapjoy/autoscaling_bootstrap/aws.rb
151
+ - lib/tapjoy/autoscaling_bootstrap/cloudwatch.rb
152
+ - lib/tapjoy/autoscaling_bootstrap/configure_autoscaler.rb
153
+ - lib/tapjoy/autoscaling_bootstrap/elb.rb
154
+ - lib/tapjoy/autoscaling_bootstrap/errors.rb
155
+ - lib/tapjoy/autoscaling_bootstrap/errors/elb.rb
156
+ - lib/tapjoy/autoscaling_bootstrap/launch_configuration.rb
157
+ - lib/tapjoy/autoscaling_bootstrap/version.rb
158
+ homepage: https://github.com/Tapjoy/tass
159
+ licenses:
160
+ - MIT
161
+ metadata: {}
162
+ post_install_message:
163
+ rdoc_options: []
164
+ require_paths:
165
+ - lib
166
+ required_ruby_version: !ruby/object:Gem::Requirement
167
+ requirements:
168
+ - - "~>"
169
+ - !ruby/object:Gem::Version
170
+ version: '2.0'
171
+ required_rubygems_version: !ruby/object:Gem::Requirement
172
+ requirements:
173
+ - - ">="
174
+ - !ruby/object:Gem::Version
175
+ version: '0'
176
+ requirements: []
177
+ rubyforge_project:
178
+ rubygems_version: 2.2.2
179
+ signing_key:
180
+ specification_version: 4
181
+ summary: Tapjoy Autoscaling Suite
182
+ test_files: []