buildserver 0.0.5 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2fea7b59f4b3317ae8a59d45a88433bb844ac667
4
- data.tar.gz: 28e8c0e22dfba7253f684e3d8d5e5daa73d58bd9
3
+ metadata.gz: 592cf2999261101fd4930d23fa025dc72f2fa4d4
4
+ data.tar.gz: 68b4f932eded37a44ecc262fdf318655497cf4ed
5
5
  SHA512:
6
- metadata.gz: 16a8bae7835f16fe07bd7f286dceee95be357d72d0e72eef321b4816411d91f11c11e8107a5538a4220087dce7edf49074cb8ae996e29955f6f29f1516059ab1
7
- data.tar.gz: 1ad4b04a62b7b0863fce1e98183e4a991c7b27479bc05cb0be0f1bbd6502c29a0b0f43cdcdc02ce032dc4ee7000a1777ab482d64a8aefa8da15685440b275900
6
+ metadata.gz: f61f1425f9ce5c5313d45121d7557fc31d4b1cfeb142f21f674b0ea5d9de75bac4dbb670cedf7f4c13f64b3a86d0ba36c7cd287a38e96cbffe2804b474ac7439
7
+ data.tar.gz: 0e4851330e8babe899614570f07c1516f664304bea8dc4e0643d3e9434260d1c6de1d4dd738baa6f8fe1add58d684a634bff7f6007e6054e1147767562c5a546
data/buildserver.gemspec CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "buildserver"
7
- spec.version = '0.0.5'
7
+ spec.version = '1.0.0'
8
8
  spec.authors = ["Kasper Grubbe"]
9
9
  spec.email = ["kawsper@gmail.com"]
10
10
  spec.summary = %q{Lets you easily compile bash scripts from Ruby to build server instances on your favorite Linux distro.}
@@ -66,7 +66,7 @@ module Buildserver
66
66
  run_command("chown #{options.fetch(:owners)} #{location}") if options.include?(:owners)
67
67
  run_command("chmod #{options.fetch(:permission)} #{location}") if options.include?(:permission)
68
68
 
69
- run_command("cat > #{location} << EOF
69
+ run_command("cat > #{location} << \"EOF\"
70
70
  #{template}
71
71
  EOF")
72
72
  end
@@ -80,7 +80,7 @@ EOF")
80
80
  new_template << template
81
81
  new_template << "#---#{splitter.upcase}-END\n"
82
82
 
83
- run_command("cat >> #{location} << EOF
83
+ run_command("cat >> #{location} << \"EOF\"
84
84
  #{new_template}
85
85
  EOF")
86
86
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: buildserver
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kasper Grubbe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-15 00:00:00.000000000 Z
11
+ date: 2015-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler