rawinit 1.0
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 +7 -0
- data/bin/Ionic.Zip.dll +0 -0
- data/bin/Ionic.Zip.xml +18132 -0
- data/bin/NSpec.dll +0 -0
- data/bin/_BuildInfo.xml +16 -0
- data/bin/rawinit +25 -0
- data/bin/warmup.exe +0 -0
- data/bin/warmup.exe.config +42 -0
- data/bin/warmup.pdb +0 -0
- metadata +51 -0
data/bin/NSpec.dll
ADDED
|
Binary file
|
data/bin/_BuildInfo.xml
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" ?>
|
|
2
|
+
<buildInfo>
|
|
3
|
+
<projectName>warmup</projectName>
|
|
4
|
+
<companyName>A Curious Mind Software & Fervent Coder Software</companyName>
|
|
5
|
+
<versionMajor>0</versionMajor>
|
|
6
|
+
<versionMinor>6</versionMinor>
|
|
7
|
+
<versionPatch>6</versionPatch>
|
|
8
|
+
<buildNumber>0</buildNumber>
|
|
9
|
+
<revision>2</revision>
|
|
10
|
+
<version>0.6.6.0</version>
|
|
11
|
+
<repositoryPath>git://github.com/chucknorris/warmup.git</repositoryPath>
|
|
12
|
+
<microsoftNetFramework>net-4.0</microsoftNetFramework>
|
|
13
|
+
<msbuildConfiguration>Release</msbuildConfiguration>
|
|
14
|
+
<msbuildPlatform>Any CPU</msbuildPlatform>
|
|
15
|
+
<builtWith>UppercuT v. 1.4.2.0</builtWith>
|
|
16
|
+
</buildInfo>
|
data/bin/rawinit
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
if ARGV.empty?
|
|
2
|
+
print "usage:"
|
|
3
|
+
print "\n"
|
|
4
|
+
print "rawinit template_url solution_name"
|
|
5
|
+
print "\n"
|
|
6
|
+
print "example"
|
|
7
|
+
print "\n"
|
|
8
|
+
print "rawinit https://github.com/pedro-ramirez-suarez/MVCScaffold mysolution"
|
|
9
|
+
exit 1
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
if ARGV[0].upcase.start_with?('HELP')
|
|
13
|
+
print "usage:"
|
|
14
|
+
print "\n"
|
|
15
|
+
print "rawinit template_url solution_name"
|
|
16
|
+
print "\n"
|
|
17
|
+
print "example"
|
|
18
|
+
print "\n"
|
|
19
|
+
print "rawinit https://github.com/pedro-ramirez-suarez/MVCScaffold mysolution"
|
|
20
|
+
exit 1
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
result = system(File.dirname(__FILE__) + "/warmup.exe " + ARGV.join(' '))
|
|
24
|
+
print "Type [raw help] to get help and show a tutorial"
|
|
25
|
+
exit 1 unless result
|
data/bin/warmup.exe
ADDED
|
Binary file
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<configuration>
|
|
3
|
+
<configSections>
|
|
4
|
+
<section name="warmup" type="warmup.infrastructure.settings.WarmupConfiguration, warmup"/>
|
|
5
|
+
</configSections>
|
|
6
|
+
|
|
7
|
+
<!--
|
|
8
|
+
replacementToken="__NAME__"
|
|
9
|
+
sourceControlType="svn|git|file"
|
|
10
|
+
-->
|
|
11
|
+
<warmup sourceControlType="file" sourceControlWarmupLocation="C:\CODE\_templates">
|
|
12
|
+
<ignoredExtensions>
|
|
13
|
+
<clear/>
|
|
14
|
+
<add ext="exe"/>
|
|
15
|
+
<add ext="dll"/>
|
|
16
|
+
<add ext="pdb"/>
|
|
17
|
+
<add ext="jpg"/>
|
|
18
|
+
<add ext="png"/>
|
|
19
|
+
<add ext="gif"/>
|
|
20
|
+
<add ext="mst"/>
|
|
21
|
+
<add ext="msi"/>
|
|
22
|
+
<add ext="msm"/>
|
|
23
|
+
<add ext="gitignore"/>
|
|
24
|
+
<add ext="idx"/>
|
|
25
|
+
<add ext="pack"/>
|
|
26
|
+
<add ext="suo"/>
|
|
27
|
+
<add ext="ico"/>
|
|
28
|
+
<add ext="nupkg"/>
|
|
29
|
+
<add ext="zip"/>
|
|
30
|
+
<add ext="7z"/>
|
|
31
|
+
</ignoredExtensions>
|
|
32
|
+
<ignoredFolders>
|
|
33
|
+
<add folder=".svn"/>
|
|
34
|
+
<add folder=".git"/>
|
|
35
|
+
</ignoredFolders>
|
|
36
|
+
|
|
37
|
+
<textReplaces>
|
|
38
|
+
<add find="__YO__" replace="Dude, that was so sweet!"/>
|
|
39
|
+
</textReplaces>
|
|
40
|
+
</warmup>
|
|
41
|
+
|
|
42
|
+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>
|
data/bin/warmup.pdb
ADDED
|
Binary file
|
metadata
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rawinit
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: '1.0'
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Pedro Ramirez
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-10-24 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: RawInit uses Warmup
|
|
14
|
+
email: ''
|
|
15
|
+
executables:
|
|
16
|
+
- rawinit
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- bin/Ionic.Zip.dll
|
|
21
|
+
- bin/Ionic.Zip.xml
|
|
22
|
+
- bin/NSpec.dll
|
|
23
|
+
- bin/_BuildInfo.xml
|
|
24
|
+
- bin/rawinit
|
|
25
|
+
- bin/warmup.exe
|
|
26
|
+
- bin/warmup.exe.config
|
|
27
|
+
- bin/warmup.pdb
|
|
28
|
+
homepage: ''
|
|
29
|
+
licenses: []
|
|
30
|
+
metadata: {}
|
|
31
|
+
post_install_message:
|
|
32
|
+
rdoc_options: []
|
|
33
|
+
require_paths:
|
|
34
|
+
- lib
|
|
35
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
40
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
41
|
+
requirements:
|
|
42
|
+
- - ">="
|
|
43
|
+
- !ruby/object:Gem::Version
|
|
44
|
+
version: '0'
|
|
45
|
+
requirements: []
|
|
46
|
+
rubyforge_project: rawinit
|
|
47
|
+
rubygems_version: 2.4.8
|
|
48
|
+
signing_key:
|
|
49
|
+
specification_version: 4
|
|
50
|
+
summary: Rawinit - Initializer for Raw Framework!
|
|
51
|
+
test_files: []
|