crazy_ivan 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. data/Rakefile +65 -45
  2. data/bin/crazy_ivan +2 -3
  3. data/crazy_ivan.gemspec +41 -1
  4. data/lib/crazy_ivan.rb +19 -11
  5. data/lib/crazy_ivan/report_assembler.rb +1 -2
  6. data/{templates → lib/crazy_ivan/templates}/css/ci.css +0 -0
  7. data/{templates → lib/crazy_ivan/templates}/index.html +0 -0
  8. data/{templates → lib/crazy_ivan/templates}/javascript/builder.js +0 -0
  9. data/{templates → lib/crazy_ivan/templates}/javascript/controls.js +0 -0
  10. data/{templates → lib/crazy_ivan/templates}/javascript/date.js +0 -0
  11. data/{templates → lib/crazy_ivan/templates}/javascript/dragdrop.js +0 -0
  12. data/{templates → lib/crazy_ivan/templates}/javascript/effects.js +0 -0
  13. data/{templates → lib/crazy_ivan/templates}/javascript/json-template.js +0 -0
  14. data/{templates → lib/crazy_ivan/templates}/javascript/prototype.js +0 -0
  15. data/{templates → lib/crazy_ivan/templates}/javascript/scriptaculous.js +0 -0
  16. data/{templates → lib/crazy_ivan/templates}/javascript/slider.js +0 -0
  17. data/lib/crazy_ivan/vendor/core_ext/tmpdir.rb +87 -0
  18. data/lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/generator/extconf.rb +11 -0
  19. data/lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/generator/generator.c +919 -0
  20. data/lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/generator/unicode.c +182 -0
  21. data/lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/generator/unicode.h +53 -0
  22. data/lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/parser/extconf.rb +11 -0
  23. data/lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/parser/parser.c +1829 -0
  24. data/lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/parser/parser.rl +686 -0
  25. data/lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/parser/unicode.c +154 -0
  26. data/lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/parser/unicode.h +58 -0
  27. data/lib/crazy_ivan/vendor/json.rb +4 -8
  28. data/lib/crazy_ivan/vendor/open4.rb +4 -8
  29. data/lib/crazy_ivan/vendor/tmpdir.rb +3 -0
  30. data/lib/crazy_ivan/version.rb +1 -7
  31. metadata +87 -59
  32. data/VERSION +0 -1
@@ -0,0 +1,154 @@
1
+ #include "unicode.h"
2
+
3
+ /*
4
+ * Copyright 2001-2004 Unicode, Inc.
5
+ *
6
+ * Disclaimer
7
+ *
8
+ * This source code is provided as is by Unicode, Inc. No claims are
9
+ * made as to fitness for any particular purpose. No warranties of any
10
+ * kind are expressed or implied. The recipient agrees to determine
11
+ * applicability of information provided. If this file has been
12
+ * purchased on magnetic or optical media from Unicode, Inc., the
13
+ * sole remedy for any claim will be exchange of defective media
14
+ * within 90 days of receipt.
15
+ *
16
+ * Limitations on Rights to Redistribute This Code
17
+ *
18
+ * Unicode, Inc. hereby grants the right to freely use the information
19
+ * supplied in this file in the creation of products supporting the
20
+ * Unicode Standard, and to make copies of this file in any form
21
+ * for internal or external distribution as long as this notice
22
+ * remains attached.
23
+ */
24
+
25
+ /*
26
+ * Index into the table below with the first byte of a UTF-8 sequence to
27
+ * get the number of trailing bytes that are supposed to follow it.
28
+ * Note that *legal* UTF-8 values can't have 4 or 5-bytes. The table is
29
+ * left as-is for anyone who may want to do such conversion, which was
30
+ * allowed in earlier algorithms.
31
+ */
32
+ static const char trailingBytesForUTF8[256] = {
33
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
34
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
35
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
36
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
37
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
38
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
39
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
40
+ 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, 3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5
41
+ };
42
+
43
+ /*
44
+ * Magic values subtracted from a buffer value during UTF8 conversion.
45
+ * This table contains as many values as there might be trailing bytes
46
+ * in a UTF-8 sequence.
47
+ */
48
+ static const UTF32 offsetsFromUTF8[6] = { 0x00000000UL, 0x00003080UL, 0x000E2080UL,
49
+ 0x03C82080UL, 0xFA082080UL, 0x82082080UL };
50
+
51
+ /*
52
+ * Once the bits are split out into bytes of UTF-8, this is a mask OR-ed
53
+ * into the first byte, depending on how many bytes follow. There are
54
+ * as many entries in this table as there are UTF-8 sequence types.
55
+ * (I.e., one byte sequence, two byte... etc.). Remember that sequencs
56
+ * for *legal* UTF-8 will be 4 or fewer bytes total.
57
+ */
58
+ static const UTF8 firstByteMark[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC };
59
+
60
+ char *JSON_convert_UTF16_to_UTF8 (
61
+ VALUE buffer,
62
+ char *source,
63
+ char *sourceEnd,
64
+ ConversionFlags flags)
65
+ {
66
+ UTF16 *tmp, *tmpPtr, *tmpEnd;
67
+ char buf[5];
68
+ long n = 0, i;
69
+ char *p = source - 1;
70
+
71
+ while (p < sourceEnd && p[0] == '\\' && p[1] == 'u') {
72
+ p += 6;
73
+ n++;
74
+ }
75
+ p = source + 1;
76
+ buf[4] = 0;
77
+ tmpPtr = tmp = ALLOC_N(UTF16, n);
78
+ tmpEnd = tmp + n;
79
+ for (i = 0; i < n; i++) {
80
+ buf[0] = *p++;
81
+ buf[1] = *p++;
82
+ buf[2] = *p++;
83
+ buf[3] = *p++;
84
+ tmpPtr[i] = (UTF16)strtol(buf, NULL, 16);
85
+ p += 2;
86
+ }
87
+
88
+ while (tmpPtr < tmpEnd) {
89
+ UTF32 ch;
90
+ unsigned short bytesToWrite = 0;
91
+ const UTF32 byteMask = 0xBF;
92
+ const UTF32 byteMark = 0x80;
93
+ ch = *tmpPtr++;
94
+ /* If we have a surrogate pair, convert to UTF32 first. */
95
+ if (ch >= UNI_SUR_HIGH_START && ch <= UNI_SUR_HIGH_END) {
96
+ /* If the 16 bits following the high surrogate are in the source
97
+ * buffer... */
98
+ if (tmpPtr < tmpEnd) {
99
+ UTF32 ch2 = *tmpPtr;
100
+ /* If it's a low surrogate, convert to UTF32. */
101
+ if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) {
102
+ ch = ((ch - UNI_SUR_HIGH_START) << halfShift)
103
+ + (ch2 - UNI_SUR_LOW_START) + halfBase;
104
+ ++tmpPtr;
105
+ } else if (flags == strictConversion) { /* it's an unpaired high surrogate */
106
+ ruby_xfree(tmp);
107
+ rb_raise(rb_path2class("JSON::ParserError"),
108
+ "source sequence is illegal/malformed near %s", source);
109
+ }
110
+ } else { /* We don't have the 16 bits following the high surrogate. */
111
+ ruby_xfree(tmp);
112
+ rb_raise(rb_path2class("JSON::ParserError"),
113
+ "partial character in source, but hit end near %s", source);
114
+ break;
115
+ }
116
+ } else if (flags == strictConversion) {
117
+ /* UTF-16 surrogate values are illegal in UTF-32 */
118
+ if (ch >= UNI_SUR_LOW_START && ch <= UNI_SUR_LOW_END) {
119
+ ruby_xfree(tmp);
120
+ rb_raise(rb_path2class("JSON::ParserError"),
121
+ "source sequence is illegal/malformed near %s", source);
122
+ }
123
+ }
124
+ /* Figure out how many bytes the result will require */
125
+ if (ch < (UTF32) 0x80) {
126
+ bytesToWrite = 1;
127
+ } else if (ch < (UTF32) 0x800) {
128
+ bytesToWrite = 2;
129
+ } else if (ch < (UTF32) 0x10000) {
130
+ bytesToWrite = 3;
131
+ } else if (ch < (UTF32) 0x110000) {
132
+ bytesToWrite = 4;
133
+ } else {
134
+ bytesToWrite = 3;
135
+ ch = UNI_REPLACEMENT_CHAR;
136
+ }
137
+
138
+ buf[0] = 0;
139
+ buf[1] = 0;
140
+ buf[2] = 0;
141
+ buf[3] = 0;
142
+ p = buf + bytesToWrite;
143
+ switch (bytesToWrite) { /* note: everything falls through. */
144
+ case 4: *--p = (UTF8) ((ch | byteMark) & byteMask); ch >>= 6;
145
+ case 3: *--p = (UTF8) ((ch | byteMark) & byteMask); ch >>= 6;
146
+ case 2: *--p = (UTF8) ((ch | byteMark) & byteMask); ch >>= 6;
147
+ case 1: *--p = (UTF8) (ch | firstByteMark[bytesToWrite]);
148
+ }
149
+ rb_str_buf_cat(buffer, p, bytesToWrite);
150
+ }
151
+ ruby_xfree(tmp);
152
+ source += 5 + (n - 1) * 6;
153
+ return source;
154
+ }
@@ -0,0 +1,58 @@
1
+
2
+ #ifndef _PARSER_UNICODE_H_
3
+ #define _PARSER_UNICODE_H_
4
+
5
+ #include "ruby.h"
6
+
7
+ typedef unsigned long UTF32; /* at least 32 bits */
8
+ typedef unsigned short UTF16; /* at least 16 bits */
9
+ typedef unsigned char UTF8; /* typically 8 bits */
10
+
11
+ #define UNI_REPLACEMENT_CHAR (UTF32)0x0000FFFD
12
+ #define UNI_MAX_BMP (UTF32)0x0000FFFF
13
+ #define UNI_MAX_UTF16 (UTF32)0x0010FFFF
14
+ #define UNI_MAX_UTF32 (UTF32)0x7FFFFFFF
15
+ #define UNI_MAX_LEGAL_UTF32 (UTF32)0x0010FFFF
16
+
17
+ #define UNI_SUR_HIGH_START (UTF32)0xD800
18
+ #define UNI_SUR_HIGH_END (UTF32)0xDBFF
19
+ #define UNI_SUR_LOW_START (UTF32)0xDC00
20
+ #define UNI_SUR_LOW_END (UTF32)0xDFFF
21
+
22
+ static const int halfShift = 10; /* used for shifting by 10 bits */
23
+
24
+ static const UTF32 halfBase = 0x0010000UL;
25
+ static const UTF32 halfMask = 0x3FFUL;
26
+
27
+ typedef enum {
28
+ conversionOK = 0, /* conversion successful */
29
+ sourceExhausted, /* partial character in source, but hit end */
30
+ targetExhausted, /* insuff. room in target for conversion */
31
+ sourceIllegal /* source sequence is illegal/malformed */
32
+ } ConversionResult;
33
+
34
+ typedef enum {
35
+ strictConversion = 0,
36
+ lenientConversion
37
+ } ConversionFlags;
38
+
39
+ char *JSON_convert_UTF16_to_UTF8 (
40
+ VALUE buffer,
41
+ char *source,
42
+ char *sourceEnd,
43
+ ConversionFlags flags);
44
+
45
+ #ifndef RARRAY_PTR
46
+ #define RARRAY_PTR(ARRAY) RARRAY(ARRAY)->ptr
47
+ #endif
48
+ #ifndef RARRAY_LEN
49
+ #define RARRAY_LEN(ARRAY) RARRAY(ARRAY)->len
50
+ #endif
51
+ #ifndef RSTRING_PTR
52
+ #define RSTRING_PTR(string) RSTRING(string)->ptr
53
+ #endif
54
+ #ifndef RSTRING_LEN
55
+ #define RSTRING_LEN(string) RSTRING(string)->len
56
+ #endif
57
+
58
+ #endif
@@ -1,10 +1,6 @@
1
- # Prefer gems to the bundled libs.
2
- require 'rubygems'
3
-
4
1
  begin
5
- gem 'json', '~> 1.1.7'
2
+ require 'json'
6
3
  rescue LoadError
7
- $:.unshift "#{File.dirname(__FILE__)}/json-1.1.7"
8
- end
9
-
10
- require 'json'
4
+ $LOAD_PATH.unshift(File.dirname(__FILE__) + '/json-1.1.7/lib')
5
+ require 'json'
6
+ end
@@ -1,10 +1,6 @@
1
- # Prefer gems to the bundled libs.
2
- require 'rubygems'
3
-
4
1
  begin
5
- gem 'open4', '>= 1.0.1'
2
+ require 'open4'
6
3
  rescue LoadError
7
- $:.unshift "#{File.dirname(__FILE__)}/open4-1.0.1"
8
- end
9
-
10
- require 'open4'
4
+ $LOAD_PATH.unshift(File.dirname(__FILE__) + '/open4-1.0.1/lib')
5
+ require 'open4.rb'
6
+ end
@@ -0,0 +1,3 @@
1
+ if !File.respond_to?(:mktmpdir)
2
+ require File.dirname(__FILE__) + '/core_ext/tmpdir'
3
+ end
@@ -1,9 +1,3 @@
1
1
  module CrazyIvan
2
- module VERSION #:nodoc:
3
- MAJOR = 0
4
- MINOR = 4
5
- TINY = 0
6
-
7
- STRING = [MAJOR, MINOR, TINY].join('.')
8
- end
2
+ VERSION = '1.1.0'
9
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crazy_ivan
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Edward Ocampo-Gooding
@@ -9,50 +9,64 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-10 00:00:00 -05:00
12
+ date: 2010-01-11 00:00:00 -05:00
13
13
  default_executable: crazy_ivan
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: gemcutter
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 0.2.1
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: mocha
27
+ type: :development
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: "0"
34
+ version:
16
35
  description: |-
17
36
  Continuous integration should really just be a script that captures the output of running your project update & test commands and presents recent results in a static html page.
18
37
 
19
- By keeping test reports in json, per-project CI configuration in 3 probably-one-line scripts, things are kept simple, quick, and super extensible.
38
+ By keeping test reports in json, per-project CI configuration in 3 probably-one-line scripts, things are kept simple, quick, and super extensible.
20
39
 
21
- Want to use git, svn, or hg? No problem.
22
- Need to fire off results to Campfire? It's built-in.
40
+ Want to use git, svn, or hg? No problem.
41
+ Need to fire off results to Campfire? It's built-in.
23
42
 
24
- CI depends on cron.
43
+ CI depends on cron.
25
44
  email: edward@edwardog.net
26
45
  executables:
27
46
  - crazy_ivan
28
47
  - test_report2campfire
29
48
  extensions: []
30
49
 
31
- extra_rdoc_files:
32
- - LICENSE
33
- - README.rdoc
34
- - TODO
50
+ extra_rdoc_files: []
51
+
35
52
  files:
36
53
  - .gitignore
37
- - LICENSE
38
- - README.rdoc
39
- - Rakefile
40
- - TODO
41
- - VERSION
42
- - bin/crazy_ivan
43
- - bin/test_report2campfire
44
54
  - crazy_ivan.gemspec
45
- - lib/crazy_ivan.rb
46
55
  - lib/crazy_ivan/html_asset_crush.rb
47
56
  - lib/crazy_ivan/report_assembler.rb
57
+ - lib/crazy_ivan/templates/css/ci.css
58
+ - lib/crazy_ivan/templates/index.html
59
+ - lib/crazy_ivan/templates/javascript/builder.js
60
+ - lib/crazy_ivan/templates/javascript/controls.js
61
+ - lib/crazy_ivan/templates/javascript/date.js
62
+ - lib/crazy_ivan/templates/javascript/dragdrop.js
63
+ - lib/crazy_ivan/templates/javascript/effects.js
64
+ - lib/crazy_ivan/templates/javascript/json-template.js
65
+ - lib/crazy_ivan/templates/javascript/prototype.js
66
+ - lib/crazy_ivan/templates/javascript/scriptaculous.js
67
+ - lib/crazy_ivan/templates/javascript/slider.js
48
68
  - lib/crazy_ivan/test_runner.rb
49
- - lib/crazy_ivan/vendor/json-1.1.7/CHANGES
50
- - lib/crazy_ivan/vendor/json-1.1.7/GPL
51
- - lib/crazy_ivan/vendor/json-1.1.7/README
52
- - lib/crazy_ivan/vendor/json-1.1.7/RUBY
53
- - lib/crazy_ivan/vendor/json-1.1.7/Rakefile
54
- - lib/crazy_ivan/vendor/json-1.1.7/TODO
55
- - lib/crazy_ivan/vendor/json-1.1.7/VERSION
69
+ - lib/crazy_ivan/vendor/core_ext/tmpdir.rb
56
70
  - lib/crazy_ivan/vendor/json-1.1.7/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkComparison.log
57
71
  - lib/crazy_ivan/vendor/json-1.1.7/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat
58
72
  - lib/crazy_ivan/vendor/json-1.1.7/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat
@@ -88,6 +102,16 @@ files:
88
102
  - lib/crazy_ivan/vendor/json-1.1.7/benchmarks/parser_benchmark.rb
89
103
  - lib/crazy_ivan/vendor/json-1.1.7/bin/edit_json.rb
90
104
  - lib/crazy_ivan/vendor/json-1.1.7/bin/prettify_json.rb
105
+ - lib/crazy_ivan/vendor/json-1.1.7/CHANGES
106
+ - lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/generator/extconf.rb
107
+ - lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/generator/generator.c
108
+ - lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/generator/unicode.c
109
+ - lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/generator/unicode.h
110
+ - lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/parser/extconf.rb
111
+ - lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/parser/parser.c
112
+ - lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/parser/parser.rl
113
+ - lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/parser/unicode.c
114
+ - lib/crazy_ivan/vendor/json-1.1.7/core_ext/json/ext/parser/unicode.h
91
115
  - lib/crazy_ivan/vendor/json-1.1.7/data/example.json
92
116
  - lib/crazy_ivan/vendor/json-1.1.7/data/index.html
93
117
  - lib/crazy_ivan/vendor/json-1.1.7/data/prototype.js
@@ -101,26 +125,30 @@ files:
101
125
  - lib/crazy_ivan/vendor/json-1.1.7/ext/json/ext/parser/parser.rl
102
126
  - lib/crazy_ivan/vendor/json-1.1.7/ext/json/ext/parser/unicode.c
103
127
  - lib/crazy_ivan/vendor/json-1.1.7/ext/json/ext/parser/unicode.h
128
+ - lib/crazy_ivan/vendor/json-1.1.7/GPL
104
129
  - lib/crazy_ivan/vendor/json-1.1.7/install.rb
105
- - lib/crazy_ivan/vendor/json-1.1.7/lib/json.rb
106
- - lib/crazy_ivan/vendor/json-1.1.7/lib/json/Array.xpm
107
- - lib/crazy_ivan/vendor/json-1.1.7/lib/json/FalseClass.xpm
108
- - lib/crazy_ivan/vendor/json-1.1.7/lib/json/Hash.xpm
109
- - lib/crazy_ivan/vendor/json-1.1.7/lib/json/Key.xpm
110
- - lib/crazy_ivan/vendor/json-1.1.7/lib/json/NilClass.xpm
111
- - lib/crazy_ivan/vendor/json-1.1.7/lib/json/Numeric.xpm
112
- - lib/crazy_ivan/vendor/json-1.1.7/lib/json/String.xpm
113
- - lib/crazy_ivan/vendor/json-1.1.7/lib/json/TrueClass.xpm
114
130
  - lib/crazy_ivan/vendor/json-1.1.7/lib/json/add/core.rb
115
131
  - lib/crazy_ivan/vendor/json-1.1.7/lib/json/add/rails.rb
132
+ - lib/crazy_ivan/vendor/json-1.1.7/lib/json/Array.xpm
116
133
  - lib/crazy_ivan/vendor/json-1.1.7/lib/json/common.rb
117
134
  - lib/crazy_ivan/vendor/json-1.1.7/lib/json/editor.rb
118
135
  - lib/crazy_ivan/vendor/json-1.1.7/lib/json/ext.rb
136
+ - lib/crazy_ivan/vendor/json-1.1.7/lib/json/FalseClass.xpm
137
+ - lib/crazy_ivan/vendor/json-1.1.7/lib/json/Hash.xpm
119
138
  - lib/crazy_ivan/vendor/json-1.1.7/lib/json/json.xpm
120
- - lib/crazy_ivan/vendor/json-1.1.7/lib/json/pure.rb
139
+ - lib/crazy_ivan/vendor/json-1.1.7/lib/json/Key.xpm
140
+ - lib/crazy_ivan/vendor/json-1.1.7/lib/json/NilClass.xpm
141
+ - lib/crazy_ivan/vendor/json-1.1.7/lib/json/Numeric.xpm
121
142
  - lib/crazy_ivan/vendor/json-1.1.7/lib/json/pure/generator.rb
122
143
  - lib/crazy_ivan/vendor/json-1.1.7/lib/json/pure/parser.rb
144
+ - lib/crazy_ivan/vendor/json-1.1.7/lib/json/pure.rb
145
+ - lib/crazy_ivan/vendor/json-1.1.7/lib/json/String.xpm
146
+ - lib/crazy_ivan/vendor/json-1.1.7/lib/json/TrueClass.xpm
123
147
  - lib/crazy_ivan/vendor/json-1.1.7/lib/json/version.rb
148
+ - lib/crazy_ivan/vendor/json-1.1.7/lib/json.rb
149
+ - lib/crazy_ivan/vendor/json-1.1.7/Rakefile
150
+ - lib/crazy_ivan/vendor/json-1.1.7/README
151
+ - lib/crazy_ivan/vendor/json-1.1.7/RUBY
124
152
  - lib/crazy_ivan/vendor/json-1.1.7/tests/fixtures/fail1.json
125
153
  - lib/crazy_ivan/vendor/json-1.1.7/tests/fixtures/fail10.json
126
154
  - lib/crazy_ivan/vendor/json-1.1.7/tests/fixtures/fail11.json
@@ -158,14 +186,16 @@ files:
158
186
  - lib/crazy_ivan/vendor/json-1.1.7/tests/test_json_generate.rb
159
187
  - lib/crazy_ivan/vendor/json-1.1.7/tests/test_json_rails.rb
160
188
  - lib/crazy_ivan/vendor/json-1.1.7/tests/test_json_unicode.rb
189
+ - lib/crazy_ivan/vendor/json-1.1.7/TODO
161
190
  - lib/crazy_ivan/vendor/json-1.1.7/tools/fuzz.rb
162
191
  - lib/crazy_ivan/vendor/json-1.1.7/tools/server.rb
192
+ - lib/crazy_ivan/vendor/json-1.1.7/VERSION
163
193
  - lib/crazy_ivan/vendor/json.rb
164
- - lib/crazy_ivan/vendor/open4-1.0.1/README
165
- - lib/crazy_ivan/vendor/open4-1.0.1/README.erb
166
- - lib/crazy_ivan/vendor/open4-1.0.1/Rakefile
167
194
  - lib/crazy_ivan/vendor/open4-1.0.1/lib/open4.rb
168
195
  - lib/crazy_ivan/vendor/open4-1.0.1/open4.gemspec
196
+ - lib/crazy_ivan/vendor/open4-1.0.1/Rakefile
197
+ - lib/crazy_ivan/vendor/open4-1.0.1/README
198
+ - lib/crazy_ivan/vendor/open4-1.0.1/README.erb
169
199
  - lib/crazy_ivan/vendor/open4-1.0.1/samples/bg.rb
170
200
  - lib/crazy_ivan/vendor/open4-1.0.1/samples/block.rb
171
201
  - lib/crazy_ivan/vendor/open4-1.0.1/samples/exception.rb
@@ -175,27 +205,26 @@ files:
175
205
  - lib/crazy_ivan/vendor/open4-1.0.1/samples/timeout.rb
176
206
  - lib/crazy_ivan/vendor/open4-1.0.1/white_box/leak.rb
177
207
  - lib/crazy_ivan/vendor/open4.rb
208
+ - lib/crazy_ivan/vendor/tmpdir.rb
178
209
  - lib/crazy_ivan/version.rb
179
- - templates/css/ci.css
180
- - templates/index.html
181
- - templates/javascript/builder.js
182
- - templates/javascript/controls.js
183
- - templates/javascript/date.js
184
- - templates/javascript/dragdrop.js
185
- - templates/javascript/effects.js
186
- - templates/javascript/json-template.js
187
- - templates/javascript/prototype.js
188
- - templates/javascript/scriptaculous.js
189
- - templates/javascript/slider.js
210
+ - lib/crazy_ivan.rb
211
+ - bin/crazy_ivan
212
+ - bin/test_report2campfire
213
+ - LICENSE
214
+ - Rakefile
215
+ - README.rdoc
216
+ - TODO
190
217
  - test/crazy_ivan_test.rb
191
218
  - test/test_helper.rb
192
- has_rdoc: true
219
+ has_rdoc: false
193
220
  homepage: http://github.com/edward/crazy_ivan
194
221
  licenses: []
195
222
 
196
- post_install_message:
197
- rdoc_options:
198
- - --charset=UTF-8
223
+ post_install_message: "\\n= Crazy Ivan\n\n\
224
+ Crazy Ivan (CI) is simplest possible continuous integration tool.\n\n\
225
+ == Usage\n\n Create a directory where your projects will live\n $ mkdir /var/continuous-integration\n \n Place some project(s) in that directory\n $ cd /var/continuous-integration\n $ git clone git://github.com/edward/active_merchant.git\n \n Set up continuous integration for each project\n $ crazy_ivan setup # creates example ci scripts in \n # each project (see How this works)\n \n \n \n $ crazy_ivan setup # creates the ci directory, and\n # creates a configuration file,\n # sets a cron job to run crazy_ivan\n \n Manually run it once to check everything is ok\n $ cd /var/continuous-integration\n $ crazy_ivan /var/www/ci # the test reports path should be\n # accessible via your web server\n \n $ open /var/www/ci/index.html # or check it through your browser\n \n Set a cron job to run it every 15 minutes\n $ echo \"0,15,30,45 * * * * cd /var/continuous-integration; crazy_ivan /var/www/ci\" > ci.cron\n $ crontab ci.cron\n \n Note that you don\xE2\x80\x99t want this running too frequently; having overlapping \n runs is possible and would be bad.\n \n (Functionality to have this run as a web-hook is planned.)\n\n"
226
+ rdoc_options: []
227
+
199
228
  require_paths:
200
229
  - lib
201
230
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -212,11 +241,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
212
241
  version:
213
242
  requirements: []
214
243
 
215
- rubyforge_project:
244
+ rubyforge_project: crazy_ivan
216
245
  rubygems_version: 1.3.5
217
246
  signing_key:
218
247
  specification_version: 3
219
248
  summary: Crazy Ivan (CI) is simplest possible continuous integration tool.
220
- test_files:
221
- - test/crazy_ivan_test.rb
222
- - test/test_helper.rb
249
+ test_files: []
250
+