Module: Ebfly::Command
- Included in:
- App, Config, Environment
- Defined in:
- lib/ebfly/ebfly.rb
Constant Summary collapse
- PREDEFINED_SOLUTION_STACKS =
{ "php53" => "64bit Amazon Linux running PHP 5.3", "php54" => "64bit Amazon Linux 2014.02 v1.0.2 running PHP 5.4", "php55" => "64bit Amazon Linux 2014.02 v1.0.2 running PHP 5.5", "nodejs" => "64bit Amazon Linux 2014.02 v1.0.2 running Node.js", "python26" => "64bit Amazon Linux 2013.09 v1.0.2 running Python", "python27" => "64bit Amazon Linux 2013.09 v1.0.2 running Python 2.7", "ruby18" => "64bit Amazon Linux 2014.02 v1.0.1 running Ruby 1.8.7", "ruby19" => "64bit Amazon Linux 2014.02 v1.0.2 running Ruby 1.9.3", "ruby20" => "64bit Amazon Linux 2014.03 v1.0.2 running Ruby 2.0 (Passenger Standalone)", "ruby20-puma" => "64bit Amazon Linux 2014.03 v1.0.3 running Ruby 2.0 (Puma)", "docker0.9" => "64bit Amazon Linux 2014.03 v1.0.4 running Docker 0.9.0" }
Instance Method Summary collapse
- #debug(obj) ⇒ Object
- #eb ⇒ Object
- #env_name(app, env) ⇒ Object
- #exist_command?(cmd) ⇒ Boolean
- #run(&block) ⇒ Object
- #s3 ⇒ Object
- #s3_bucket ⇒ Object
- #solution_stack(name) ⇒ Object
- #style_err(err) ⇒ Object
- #tier(type) ⇒ Object
Instance Method Details
#debug(obj) ⇒ Object
50 51 52 |
# File 'lib/ebfly/ebfly.rb', line 50 def debug(obj) pp obj if ENV["DEBUG"] end |
#eb ⇒ Object
22 23 24 25 |
# File 'lib/ebfly/ebfly.rb', line 22 def eb @eb ||= AWS::ElasticBeanstalk.new @eb.client end |
#env_name(app, env) ⇒ Object
65 66 67 |
# File 'lib/ebfly/ebfly.rb', line 65 def env_name(app, env) "#{app}-#{env}" end |
#exist_command?(cmd) ⇒ Boolean
54 55 56 57 58 59 60 61 62 63 |
# File 'lib/ebfly/ebfly.rb', line 54 def exist_command?(cmd) exts = ENV['PATHEXT'] ? ENV['PATHEXT'].split(';') : [''] ENV['PATH'].split(File::PATH_SEPARATOR).each do |path| exts.each { |ext| exe = File.join(path, "#{cmd}#{ext}") return exe if File.executable? exe } end return nil end |
#run(&block) ⇒ Object
31 32 33 34 35 36 37 38 39 40 |
# File 'lib/ebfly/ebfly.rb', line 31 def run(&block) begin res = yield raise res.error unless res.successful? res rescue => err style_err(err) exit 1 end end |
#s3 ⇒ Object
27 28 29 |
# File 'lib/ebfly/ebfly.rb', line 27 def s3 @s3 ||= AWS::S3.new end |
#s3_bucket ⇒ Object
42 43 44 |
# File 'lib/ebfly/ebfly.rb', line 42 def s3_bucket @s3_bucket ||= (run { eb.create_storage_location }[:s3_bucket]) end |
#solution_stack(name) ⇒ Object
79 80 81 82 |
# File 'lib/ebfly/ebfly.rb', line 79 def solution_stack(name) return PREDEFINED_SOLUTION_STACKS[name] if PREDEFINED_SOLUTION_STACKS.key?(name) return name end |
#style_err(err) ⇒ Object
46 47 48 |
# File 'lib/ebfly/ebfly.rb', line 46 def style_err(err) puts "ERR! #{err.}" end |
#tier(type) ⇒ Object
69 70 71 72 73 74 75 76 77 |
# File 'lib/ebfly/ebfly.rb', line 69 def tier(type) if type == "web" return { name: "WebServer", type: "Standard", version: "1.0" } elsif type == "worker" return { name: "Worker", type: "SQS/HTTP", version: "1.0" } else raise "Environment tier definition not found" end end |