jumpstart 0.1.2 → 0.1.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/VERSION +1 -1
- data/jumpstart.gemspec +1 -1
- data/lib/jumpstart.rb +8 -5
- metadata +6 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.3
|
data/jumpstart.gemspec
CHANGED
data/lib/jumpstart.rb
CHANGED
|
@@ -2,12 +2,15 @@ require 'rubygems'
|
|
|
2
2
|
require 'find'
|
|
3
3
|
require 'fileutils'
|
|
4
4
|
require 'yaml'
|
|
5
|
+
require 'rbconfig'
|
|
5
6
|
|
|
6
|
-
#
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
# Sets up coloured terminal output in windows
|
|
8
|
+
if RbConfig::CONFIG['host_os'] =~ /mswin|windows|cygwin|mingw32/
|
|
9
|
+
begin
|
|
10
|
+
require 'Win32/Console/ANSI'
|
|
11
|
+
rescue LoadError
|
|
12
|
+
raise 'You must gem install win32console to use colored output on Windows'
|
|
13
|
+
end
|
|
11
14
|
end
|
|
12
15
|
|
|
13
16
|
module JumpStart
|
metadata
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jumpstart
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 29
|
|
4
5
|
prerelease: false
|
|
5
6
|
segments:
|
|
6
7
|
- 0
|
|
7
8
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.1.3
|
|
10
11
|
platform: ruby
|
|
11
12
|
authors:
|
|
12
13
|
- i0n
|
|
@@ -25,6 +26,7 @@ dependencies:
|
|
|
25
26
|
requirements:
|
|
26
27
|
- - ">="
|
|
27
28
|
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 3
|
|
28
30
|
segments:
|
|
29
31
|
- 0
|
|
30
32
|
version: "0"
|
|
@@ -150,6 +152,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
150
152
|
requirements:
|
|
151
153
|
- - ">="
|
|
152
154
|
- !ruby/object:Gem::Version
|
|
155
|
+
hash: 3
|
|
153
156
|
segments:
|
|
154
157
|
- 0
|
|
155
158
|
version: "0"
|
|
@@ -158,6 +161,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
158
161
|
requirements:
|
|
159
162
|
- - ">="
|
|
160
163
|
- !ruby/object:Gem::Version
|
|
164
|
+
hash: 3
|
|
161
165
|
segments:
|
|
162
166
|
- 0
|
|
163
167
|
version: "0"
|