testcloud-generator 0.0.0.4 → 0.0.0.5
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/lib/testcloud/generator/commands/gem.rb +1 -1
- data/lib/testcloud/generator/version.rb +12 -2
- data/lib/testcloud/generator.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7cf18fa434c72dbd40384c2daec2b0d03000600b
|
4
|
+
data.tar.gz: 06ad1fb55c0c4541a710d7666fa9e7610c8e0cd1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2550162e4fea7ac3ab8c8334aabdaa1715c488de0fb0274509d73c46e7c8dc698ab287238cd7bb9b3b68ae815be86abbeb232306d8674ac43431f74f7129af2
|
7
|
+
data.tar.gz: 284f0abfafbad935d1287ceb5da3b6ae30e8b66084c08cfcea05463ffccff4d7f5b00538311ee3a444b6ee4190e9f3e2fcd5b37d3f384c9b4d863ca36918c31f
|
@@ -129,7 +129,7 @@ module Testcloud
|
|
129
129
|
|
130
130
|
# All files are copied, let's initialize a new git repo
|
131
131
|
Dir.chdir(target) do
|
132
|
-
$stdout.printf "Initializing git repo in #{target}"
|
132
|
+
$stdout.printf "Initializing git repo in #{target}\n"
|
133
133
|
`git init && git add .`
|
134
134
|
end
|
135
135
|
end
|
@@ -1,7 +1,17 @@
|
|
1
|
-
require_relative 'gem_version'
|
2
|
-
|
3
1
|
module Testcloud
|
4
2
|
module Generator
|
3
|
+
module VERSION
|
4
|
+
def self.gem_version
|
5
|
+
@gem_version ||= Gem::Version.new(STRING)
|
6
|
+
end
|
7
|
+
|
8
|
+
MAJOR = 0
|
9
|
+
MINOR = 0
|
10
|
+
PATCH = 0
|
11
|
+
PRE = 5
|
12
|
+
STRING = [MAJOR, MINOR, PATCH, PRE].compact.join('.').freeze
|
13
|
+
end
|
14
|
+
|
5
15
|
def self.gem_version
|
6
16
|
VERSION.gem_version
|
7
17
|
end
|
data/lib/testcloud/generator.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: testcloud-generator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.0.
|
4
|
+
version: 0.0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- testCloud Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-09-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|