britt-geminstaller 0.5.2 → 0.5.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. data/.loadpath +5 -0
  2. data/COPYING +1 -0
  3. data/History.txt +69 -0
  4. data/LICENSE +21 -0
  5. data/Manifest.txt +78 -0
  6. data/README.txt +64 -0
  7. data/Rakefile +184 -0
  8. data/TODO.txt +138 -0
  9. data/bin/geminstaller +30 -0
  10. data/cruise_config.rb +14 -0
  11. data/focused_spec.sh +2 -0
  12. data/focused_spec_debug.sh +2 -0
  13. data/geminstaller.yml +42 -0
  14. data/lib/geminstaller.rb +103 -0
  15. data/lib/geminstaller/application.rb +105 -0
  16. data/lib/geminstaller/arg_parser.rb +166 -0
  17. data/lib/geminstaller/autogem.rb +46 -0
  18. data/lib/geminstaller/backward_compatibility.rb +10 -0
  19. data/lib/geminstaller/config.rb +68 -0
  20. data/lib/geminstaller/config_builder.rb +65 -0
  21. data/lib/geminstaller/enhanced_stream_ui.rb +71 -0
  22. data/lib/geminstaller/exact_match_list_command.rb +16 -0
  23. data/lib/geminstaller/file_reader.rb +31 -0
  24. data/lib/geminstaller/gem_arg_processor.rb +44 -0
  25. data/lib/geminstaller/gem_command_manager.rb +74 -0
  26. data/lib/geminstaller/gem_interaction_handler.rb +41 -0
  27. data/lib/geminstaller/gem_list_checker.rb +55 -0
  28. data/lib/geminstaller/gem_runner_proxy.rb +62 -0
  29. data/lib/geminstaller/gem_source_index_proxy.rb +21 -0
  30. data/lib/geminstaller/gem_spec_manager.rb +53 -0
  31. data/lib/geminstaller/geminstaller_access_error.rb +4 -0
  32. data/lib/geminstaller/geminstaller_error.rb +13 -0
  33. data/lib/geminstaller/hoe_extensions.rb +9 -0
  34. data/lib/geminstaller/install_processor.rb +71 -0
  35. data/lib/geminstaller/missing_dependency_finder.rb +46 -0
  36. data/lib/geminstaller/missing_file_error.rb +4 -0
  37. data/lib/geminstaller/noninteractive_chooser.rb +114 -0
  38. data/lib/geminstaller/output_filter.rb +49 -0
  39. data/lib/geminstaller/output_listener.rb +33 -0
  40. data/lib/geminstaller/output_observer.rb +36 -0
  41. data/lib/geminstaller/output_proxy.rb +36 -0
  42. data/lib/geminstaller/registry.rb +127 -0
  43. data/lib/geminstaller/requires.rb +81 -0
  44. data/lib/geminstaller/rogue_gem_finder.rb +195 -0
  45. data/lib/geminstaller/ruby_gem.rb +58 -0
  46. data/lib/geminstaller/rubygems_exit.rb +5 -0
  47. data/lib/geminstaller/rubygems_extensions.rb +9 -0
  48. data/lib/geminstaller/rubygems_version_checker.rb +15 -0
  49. data/lib/geminstaller/rubygems_version_warnings.rb +38 -0
  50. data/lib/geminstaller/source_index_search_adapter.rb +41 -0
  51. data/lib/geminstaller/unauthorized_dependency_prompt_error.rb +4 -0
  52. data/lib/geminstaller/unexpected_prompt_error.rb +4 -0
  53. data/lib/geminstaller/valid_platform_selector.rb +49 -0
  54. data/lib/geminstaller/version_specifier.rb +24 -0
  55. data/lib/geminstaller/yaml_loader.rb +22 -0
  56. data/lib/geminstaller_rails_preinitializer.rb +46 -0
  57. data/start_local_gem_server.sh +1 -0
  58. data/test/test_all.rb +36 -0
  59. data/test/test_all_smoketests.rb +21 -0
  60. data/website/config.yaml +11 -0
  61. data/website/src/analytics.page +6 -0
  62. data/website/src/code/ci.virtual +5 -0
  63. data/website/src/code/coverage/index.virtual +5 -0
  64. data/website/src/code/index.page +88 -0
  65. data/website/src/code/rdoc/index.virtual +6 -0
  66. data/website/src/community/index.page +14 -0
  67. data/website/src/community/links.page +11 -0
  68. data/website/src/community/rubyforge.virtual +4 -0
  69. data/website/src/default.css +175 -0
  70. data/website/src/default.template +42 -0
  71. data/website/src/documentation/documentation.page +476 -0
  72. data/website/src/documentation/index.page +53 -0
  73. data/website/src/documentation/tutorials.page +337 -0
  74. data/website/src/download.page +12 -0
  75. data/website/src/faq.page +36 -0
  76. data/website/src/index.page +92 -0
  77. data/website/src/metainfo +54 -0
  78. data/website/src/webgen.css +112 -0
  79. metadata +80 -3
@@ -0,0 +1,54 @@
1
+ index.page:
2
+ in_menu: true
3
+ sort_info: 10
4
+
5
+ documentation:
6
+ title: Documentation
7
+ sort_info: 20
8
+
9
+ download.page:
10
+ in_menu: true
11
+ sort_info: 30
12
+
13
+ faq.page:
14
+ in_menu: true
15
+ sort_info: 40
16
+
17
+ community:
18
+ title: Community
19
+ sort_info: 50
20
+
21
+ code:
22
+ title: Code
23
+ sort_info: 60
24
+
25
+ documentation/index.page:
26
+ in_menu: true
27
+ sort_info: 10
28
+
29
+ documentation/tutorials.page:
30
+ title: Tutorials
31
+ in_menu: true
32
+ sort_info: 20
33
+
34
+ documentation/documentation.page:
35
+ title: Documentation
36
+ in_menu: true
37
+ sort_info: 30
38
+
39
+ community/index.page:
40
+ in_menu: true
41
+ sort_info: 10
42
+
43
+ community/links.page:
44
+ title: Links
45
+ in_menu: true
46
+ sort_info: 30
47
+
48
+ code/index.page:
49
+ title: Design
50
+ in_menu: true
51
+ sort_info: 10
52
+
53
+
54
+
@@ -0,0 +1,112 @@
1
+ /* START webgen download tag */
2
+ .webgen-file-icon, .webgen-download-icon { vertical-align: middle; }
3
+ /* STOP webgen download tag */
4
+ .CodeRay {
5
+ background-color: #f8f8f8;
6
+ border: 1px solid silver;
7
+ font-family: 'Courier New', 'Terminal', monospace;
8
+ color: #100;
9
+ }
10
+ .CodeRay pre { margin: 0px }
11
+
12
+ div.CodeRay { }
13
+
14
+ span.CodeRay { white-space: pre; border: 0px; padding: 2px }
15
+
16
+ table.CodeRay { border-collapse: collapse; width: 100%; padding: 2px }
17
+ table.CodeRay td { padding: 2px 4px; vertical-align: top }
18
+
19
+ .CodeRay .line_numbers, .CodeRay .no {
20
+ background-color: #def;
21
+ color: gray;
22
+ text-align: right;
23
+ }
24
+ .CodeRay .line_numbers tt { font-weight: bold }
25
+ .CodeRay .no { padding: 0px 4px }
26
+ .CodeRay .code { width: 100% }
27
+
28
+ ol.CodeRay { font-size: 10pt }
29
+ ol.CodeRay li { white-space: pre }
30
+
31
+ .CodeRay .code pre { overflow: auto }
32
+
33
+ .CodeRay .af { color:#00C }
34
+ .CodeRay .an { color:#007 }
35
+ .CodeRay .av { color:#700 }
36
+ .CodeRay .aw { color:#C00 }
37
+ .CodeRay .bi { color:#509; font-weight:bold }
38
+ .CodeRay .c { color:#888 }
39
+
40
+ .CodeRay .ch { color:#04D }
41
+ .CodeRay .ch .k { color:#04D }
42
+ .CodeRay .ch .dl { color:#039 }
43
+
44
+ .CodeRay .cl { color:#B06; font-weight:bold }
45
+ .CodeRay .co { color:#036; font-weight:bold }
46
+ .CodeRay .cr { color:#0A0 }
47
+ .CodeRay .cv { color:#369 }
48
+ .CodeRay .df { color:#099; font-weight:bold }
49
+ .CodeRay .di { color:#088; font-weight:bold }
50
+ .CodeRay .dl { color:black }
51
+ .CodeRay .do { color:#970 }
52
+ .CodeRay .ds { color:#D42; font-weight:bold }
53
+ .CodeRay .e { color:#666; font-weight:bold }
54
+ .CodeRay .en { color:#800; font-weight:bold }
55
+ .CodeRay .er { color:#F00; background-color:#FAA }
56
+ .CodeRay .ex { color:#F00; font-weight:bold }
57
+ .CodeRay .fl { color:#60E; font-weight:bold }
58
+ .CodeRay .fu { color:#06B; font-weight:bold }
59
+ .CodeRay .gv { color:#d70; font-weight:bold }
60
+ .CodeRay .hx { color:#058; font-weight:bold }
61
+ .CodeRay .i { color:#00D; font-weight:bold }
62
+ .CodeRay .ic { color:#B44; font-weight:bold }
63
+
64
+ .CodeRay .il { background: #eee }
65
+ .CodeRay .il .il { background: #ddd }
66
+ .CodeRay .il .il .il { background: #ccc }
67
+ .CodeRay .il .idl { font-weight: bold; color: #888 }
68
+
69
+ .CodeRay .in { color:#B2B; font-weight:bold }
70
+ .CodeRay .iv { color:#33B }
71
+ .CodeRay .la { color:#970; font-weight:bold }
72
+ .CodeRay .lv { color:#963 }
73
+ .CodeRay .oc { color:#40E; font-weight:bold }
74
+ .CodeRay .on { color:#000; font-weight:bold }
75
+ .CodeRay .op { }
76
+ .CodeRay .pc { color:#038; font-weight:bold }
77
+ .CodeRay .pd { color:#369; font-weight:bold }
78
+ .CodeRay .pp { color:#579 }
79
+ .CodeRay .pt { color:#339; font-weight:bold }
80
+ .CodeRay .r { color:#080; font-weight:bold }
81
+
82
+ .CodeRay .rx { background-color:#fff0ff }
83
+ .CodeRay .rx .k { color:#808 }
84
+ .CodeRay .rx .dl { color:#404 }
85
+ .CodeRay .rx .mod { color:#C2C }
86
+ .CodeRay .rx .fu { color:#404; font-weight: bold }
87
+
88
+ .CodeRay .s { background-color:#fff0f0 }
89
+ .CodeRay .s .s { background-color:#ffe0e0 }
90
+ .CodeRay .s .s .s { background-color:#ffd0d0 }
91
+ .CodeRay .s .k { color:#D20 }
92
+ .CodeRay .s .dl { color:#710 }
93
+
94
+ .CodeRay .sh { background-color:#f0fff0 }
95
+ .CodeRay .sh .k { color:#2B2 }
96
+ .CodeRay .sh .dl { color:#161 }
97
+
98
+ .CodeRay .sy { color:#A60 }
99
+ .CodeRay .sy .k { color:#A60 }
100
+ .CodeRay .sy .dl { color:#630 }
101
+
102
+ .CodeRay .ta { color:#070 }
103
+ .CodeRay .tf { color:#070; font-weight:bold }
104
+ .CodeRay .ts { color:#D70; font-weight:bold }
105
+ .CodeRay .ty { color:#339; font-weight:bold }
106
+ .CodeRay .v { color:#036 }
107
+ .CodeRay .xt { color:#444 }
108
+
109
+ /* START webgen horizontal menu style */
110
+ .webgen-menu-horiz ul { display: block; }
111
+ .webgen-menu-horiz li { display: inline; }
112
+ /* STOP webgen horizontal menu style */
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: britt-geminstaller
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chad Woolley
@@ -132,8 +132,85 @@ extensions: []
132
132
 
133
133
  extra_rdoc_files: []
134
134
 
135
- files: []
136
-
135
+ files:
136
+ - .loadpath
137
+ - COPYING
138
+ - History.txt
139
+ - LICENSE
140
+ - Manifest.txt
141
+ - README.txt
142
+ - Rakefile
143
+ - TODO.txt
144
+ - bin/geminstaller
145
+ - cruise_config.rb
146
+ - focused_spec.sh
147
+ - focused_spec_debug.sh
148
+ - geminstaller.yml
149
+ - lib/geminstaller.rb
150
+ - lib/geminstaller/application.rb
151
+ - lib/geminstaller/arg_parser.rb
152
+ - lib/geminstaller/autogem.rb
153
+ - lib/geminstaller/backward_compatibility.rb
154
+ - lib/geminstaller/config.rb
155
+ - lib/geminstaller/config_builder.rb
156
+ - lib/geminstaller/enhanced_stream_ui.rb
157
+ - lib/geminstaller/exact_match_list_command.rb
158
+ - lib/geminstaller/file_reader.rb
159
+ - lib/geminstaller/gem_arg_processor.rb
160
+ - lib/geminstaller/gem_command_manager.rb
161
+ - lib/geminstaller/gem_interaction_handler.rb
162
+ - lib/geminstaller/gem_list_checker.rb
163
+ - lib/geminstaller/gem_runner_proxy.rb
164
+ - lib/geminstaller/gem_source_index_proxy.rb
165
+ - lib/geminstaller/gem_spec_manager.rb
166
+ - lib/geminstaller/geminstaller_access_error.rb
167
+ - lib/geminstaller/geminstaller_error.rb
168
+ - lib/geminstaller/hoe_extensions.rb
169
+ - lib/geminstaller/install_processor.rb
170
+ - lib/geminstaller/missing_dependency_finder.rb
171
+ - lib/geminstaller/missing_file_error.rb
172
+ - lib/geminstaller/noninteractive_chooser.rb
173
+ - lib/geminstaller/output_filter.rb
174
+ - lib/geminstaller/output_listener.rb
175
+ - lib/geminstaller/output_observer.rb
176
+ - lib/geminstaller/output_proxy.rb
177
+ - lib/geminstaller/registry.rb
178
+ - lib/geminstaller/requires.rb
179
+ - lib/geminstaller/rogue_gem_finder.rb
180
+ - lib/geminstaller/ruby_gem.rb
181
+ - lib/geminstaller/rubygems_exit.rb
182
+ - lib/geminstaller/rubygems_extensions.rb
183
+ - lib/geminstaller/rubygems_version_checker.rb
184
+ - lib/geminstaller/rubygems_version_warnings.rb
185
+ - lib/geminstaller/source_index_search_adapter.rb
186
+ - lib/geminstaller/unauthorized_dependency_prompt_error.rb
187
+ - lib/geminstaller/unexpected_prompt_error.rb
188
+ - lib/geminstaller/valid_platform_selector.rb
189
+ - lib/geminstaller/version_specifier.rb
190
+ - lib/geminstaller/yaml_loader.rb
191
+ - lib/geminstaller_rails_preinitializer.rb
192
+ - start_local_gem_server.sh
193
+ - test/test_all.rb
194
+ - test/test_all_smoketests.rb
195
+ - website/config.yaml
196
+ - website/src/analytics.page
197
+ - website/src/code/ci.virtual
198
+ - website/src/code/coverage/index.virtual
199
+ - website/src/code/index.page
200
+ - website/src/code/rdoc/index.virtual
201
+ - website/src/community/index.page
202
+ - website/src/community/links.page
203
+ - website/src/community/rubyforge.virtual
204
+ - website/src/default.css
205
+ - website/src/default.template
206
+ - website/src/documentation/documentation.page
207
+ - website/src/documentation/index.page
208
+ - website/src/documentation/tutorials.page
209
+ - website/src/download.page
210
+ - website/src/faq.page
211
+ - website/src/index.page
212
+ - website/src/metainfo
213
+ - website/src/webgen.css
137
214
  has_rdoc: true
138
215
  homepage: http://geminstaller.rubyforge.org/
139
216
  post_install_message: