ec2launcher 1.3.2 → 1.3.3

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.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 1.3.3
2
+
3
+ * Added an extra newline after pre-commands in user-data.
4
+
1
5
  ## 1.3.2
2
6
 
3
7
  * Added support for specifying per-environment IAM profiles in Applications.
@@ -2,5 +2,5 @@
2
2
  # Copyright (c) 2012 Sean Laurent
3
3
  #
4
4
  module EC2Launcher
5
- VERSION = "1.3.2"
5
+ VERSION = "1.3.3"
6
6
  end
data/lib/ec2launcher.rb CHANGED
@@ -734,7 +734,7 @@ EOF
734
734
  command_str = ""
735
735
  unless commands.nil? || commands.empty?
736
736
  processed_commands = commands.collect {|cmd| substitute_command_variables(cmd) }
737
- command_str = "\n" + processed_commands.join("\n")
737
+ command_str = "\n" + processed_commands.join("\n") + "\n"
738
738
  end
739
739
  command_str
740
740
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ec2launcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.2
4
+ version: 1.3.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-08 00:00:00.000000000 Z
12
+ date: 2012-10-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: aws-sdk