rucola 0.0.1

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.
Files changed (107) hide show
  1. data/ChangeLog +628 -0
  2. data/History.txt +4 -0
  3. data/License.txt +20 -0
  4. data/Manifest.txt +106 -0
  5. data/README.txt +126 -0
  6. data/Rakefile +32 -0
  7. data/TODO +28 -0
  8. data/app_generators/rucola/USAGE +6 -0
  9. data/app_generators/rucola/rucola_generator.rb +112 -0
  10. data/app_generators/rucola/templates/Rakefile.erb +12 -0
  11. data/app_generators/rucola/templates/Rakefile.erb.old +156 -0
  12. data/app_generators/rucola/templates/app/controllers/application_controller.rb +22 -0
  13. data/app_generators/rucola/templates/config/Info.plist.erb +28 -0
  14. data/app_generators/rucola/templates/config/boot.rb +2 -0
  15. data/app_generators/rucola/templates/config/environment.rb +11 -0
  16. data/app_generators/rucola/templates/config/environments/debug.rb +3 -0
  17. data/app_generators/rucola/templates/config/environments/release.rb +3 -0
  18. data/app_generators/rucola/templates/config/environments/test.rb +3 -0
  19. data/app_generators/rucola/templates/config/ib_external_class_defs.yml +13 -0
  20. data/app_generators/rucola/templates/misc/English.lproj/InfoPlist.strings.erb +3 -0
  21. data/app_generators/rucola/templates/misc/English.lproj/MainMenu.nib/classes.nib +40 -0
  22. data/app_generators/rucola/templates/misc/English.lproj/MainMenu.nib/info.nib +18 -0
  23. data/app_generators/rucola/templates/misc/English.lproj/MainMenu.nib/keyedobjects.nib +0 -0
  24. data/app_generators/rucola/templates/misc/main.m.erb +15 -0
  25. data/app_generators/rucola/templates/misc/rb_main.rb.erb +13 -0
  26. data/app_generators/rucola/templates/project.pbxproj.erb +299 -0
  27. data/app_generators/rucola/templates/script/plugin +84 -0
  28. data/app_generators/rucola/templates/test/controllers/test_application_controller.rb +10 -0
  29. data/app_generators/rucola/templates/test/test_helper.rb +10 -0
  30. data/bin/rucola +12 -0
  31. data/config/hoe.rb +71 -0
  32. data/config/requirements.rb +17 -0
  33. data/lib/rucola.rb +3 -0
  34. data/lib/rucola/info_plist.rb +37 -0
  35. data/lib/rucola/initializer.rb +313 -0
  36. data/lib/rucola/nib.rb +99 -0
  37. data/lib/rucola/rucola_support.rb +9 -0
  38. data/lib/rucola/rucola_support/controllers.rb +2 -0
  39. data/lib/rucola/rucola_support/controllers/rc_controller.rb +7 -0
  40. data/lib/rucola/rucola_support/controllers/rc_window_controller.rb +12 -0
  41. data/lib/rucola/rucola_support/core_ext.rb +2 -0
  42. data/lib/rucola/rucola_support/core_ext/objc.rb +4 -0
  43. data/lib/rucola/rucola_support/core_ext/objc/nsobject.rb +22 -0
  44. data/lib/rucola/rucola_support/core_ext/ruby.rb +4 -0
  45. data/lib/rucola/rucola_support/core_ext/ruby/string.rb +21 -0
  46. data/lib/rucola/rucola_support/initialize_hooks.rb +21 -0
  47. data/lib/rucola/rucola_support/models.rb +1 -0
  48. data/lib/rucola/rucola_support/models/rc_document.rb +10 -0
  49. data/lib/rucola/rucola_support/notifications.rb +1 -0
  50. data/lib/rucola/rucola_support/notifications/notifications.rb +146 -0
  51. data/lib/rucola/rucola_support/rc_app.rb +101 -0
  52. data/lib/rucola/tasks/freeze.rake +44 -0
  53. data/lib/rucola/tasks/interface_builder.rake +80 -0
  54. data/lib/rucola/tasks/main.rake +29 -0
  55. data/lib/rucola/tasks/xcode.rake +43 -0
  56. data/lib/rucola/test_helper.rb +57 -0
  57. data/lib/rucola/version.rb +9 -0
  58. data/lib/rucola/xcode.rb +148 -0
  59. data/log/debug.log +0 -0
  60. data/rucola_generators/controller/USAGE +5 -0
  61. data/rucola_generators/controller/controller_generator.rb +84 -0
  62. data/rucola_generators/controller/templates/controller_template.rb.erb +5 -0
  63. data/rucola_generators/controller/templates/test_controller_template.rb.erb +10 -0
  64. data/rucola_generators/document_model/USAGE +5 -0
  65. data/rucola_generators/document_model/document_model_generator.rb +67 -0
  66. data/rucola_generators/document_model/templates/document_model_template.rb.erb +27 -0
  67. data/rucola_generators/document_model/templates/test_document_model_template.rb.erb +10 -0
  68. data/rucola_generators/window_controller/USAGE +6 -0
  69. data/rucola_generators/window_controller/templates/Window.nib/classes.nib.erb +35 -0
  70. data/rucola_generators/window_controller/templates/Window.nib/info.nib +16 -0
  71. data/rucola_generators/window_controller/templates/Window.nib/keyedobjects.nib +0 -0
  72. data/rucola_generators/window_controller/templates/test_window_controller_template.rb.erb +10 -0
  73. data/rucola_generators/window_controller/templates/window_controller_template.rb.erb +19 -0
  74. data/rucola_generators/window_controller/window_controller_generator.rb +74 -0
  75. data/script/destroy +14 -0
  76. data/script/generate +14 -0
  77. data/script/txt2html +74 -0
  78. data/setup.rb +1585 -0
  79. data/tasks/deployment.rake +27 -0
  80. data/tasks/environment.rake +7 -0
  81. data/tasks/website.rake +17 -0
  82. data/test/fixtures/Info.plist +28 -0
  83. data/test/fixtures/MainMenu.nib/classes.nib +32 -0
  84. data/test/fixtures/MainMenu.nib/info.nib +18 -0
  85. data/test/fixtures/MainMenu.nib/keyedobjects.nib +0 -0
  86. data/test/test_controller_generator.rb +75 -0
  87. data/test/test_core_ext.rb +15 -0
  88. data/test/test_document_model_generator.rb +64 -0
  89. data/test/test_generator_helper.rb +20 -0
  90. data/test/test_helper.rb +13 -0
  91. data/test/test_info_plist.rb +31 -0
  92. data/test/test_nib.rb +73 -0
  93. data/test/test_notifications.rb +75 -0
  94. data/test/test_objc_core_ext.rb +37 -0
  95. data/test/test_rc_app.rb +63 -0
  96. data/test/test_rc_document.rb +18 -0
  97. data/test/test_rc_window_controller.rb +13 -0
  98. data/test/test_rucola.rb +11 -0
  99. data/test/test_rucola_generator.rb +87 -0
  100. data/test/test_window_controller_generator.rb +50 -0
  101. data/test/test_xcode.rb +128 -0
  102. data/website/index.html +199 -0
  103. data/website/index.txt +126 -0
  104. data/website/javascripts/rounded_corners_lite.inc.js +285 -0
  105. data/website/stylesheets/screen.css +138 -0
  106. data/website/template.rhtml +48 -0
  107. metadata +189 -0
@@ -0,0 +1,628 @@
1
+ 2007-11-3 Eloy Duran <e.duran@superalloy.nl>
2
+
3
+ * License.txt,
4
+ README.txt,
5
+ app_generators/rucola/USAGE,
6
+ rucola_generators/document_model/USAGE,
7
+ website/index.html,
8
+ website/index.txt,
9
+ website/template.rhtml:
10
+
11
+ Cleaned for 0.0.1 super-duper-alpha release.
12
+
13
+ 2007-11-3 Justin Palmer <justin@activereload.net>
14
+
15
+ * License.txt,
16
+ README.txt:
17
+
18
+ Update the README with an overview of Rucola.
19
+
20
+ 2007-11-3 Eloy Duran <e.duran@superalloy.nl>
21
+
22
+ * Manifest.txt,
23
+ app_generators/rucola/templates/misc/English.lproj/MainMenu.nib/keyedobjects.nib,
24
+ app_generators/rucola/templates/test/test_helper.rb,
25
+ lib/rucola/info_plist.rb,
26
+ lib/rucola/rucola_support.rb,
27
+ lib/rucola/rucola_support/models,
28
+ lib/rucola/rucola_support/models.rb,
29
+ lib/rucola/rucola_support/models/rc_document.rb,
30
+ lib/rucola/test_helper.rb,
31
+ rucola_generators/document_model,
32
+ rucola_generators/document_model/USAGE,
33
+ rucola_generators/document_model/document_model_generator.rb,
34
+ rucola_generators/document_model/templates,
35
+ rucola_generators/document_model/templates/document_model_template.rb.erb,
36
+ rucola_generators/document_model/templates/test_document_model_template.rb.erb,
37
+ rucola_generators/window_controller/window_controller_generator.rb,
38
+ test/fixtures/Info.plist,
39
+ test/test_document_model_generator.rb,
40
+ test/test_helper.rb,
41
+ test/test_info_plist.rb,
42
+ test/test_nib.rb,
43
+ test/test_rc_document.rb,
44
+ test/test_rc_window_controller.rb:
45
+
46
+ - Added new document_model generator. Due to some bugs in the document template of rubycocoa,
47
+ we have just one MainMenu.nib for now where the #newDocument, #openDocument, #saveDocument,
48
+ #saveDocumentAs are hooked up to the firstResponder.
49
+ - Added rucola/info_plist.rb to be able to add document types to the plist.
50
+ - Added rucola/rc_test_helper.rb which adds some useful test helpers also used in rucola.
51
+ - Some minor cleanup.
52
+
53
+ 2007-11-2 Justin Palmer <justin@activereload.net>
54
+
55
+ * lib/rucola/tasks/xcode.rake:
56
+
57
+ Change osascript in xcode:build to use the executable path in order to
58
+ avoid conflicts with applications of the same name.
59
+
60
+ 2007-11-2 Eloy Duran <e.duran@superalloy.nl>
61
+
62
+ * lib/rucola/tasks/main.rake,
63
+ lib/rucola/tasks/xcode.rake:
64
+
65
+ - Added a clean task to xcode.
66
+ - Did some re-factoring in the xcode tasks.
67
+ - When a build is already found we now skip xcodebuild to speedup the process.
68
+
69
+ 2007-11-2 Eloy Duran <e.duran@superalloy.nl>
70
+
71
+ * lib/rucola/tasks/xcode.rake:
72
+
73
+ The xcode:build task will now bring an app to the front once it's started.
74
+
75
+ 2007-10-30 Eloy Duran <e.duran@superalloy.nl>
76
+
77
+ * lib/rucola/rucola_support/controllers/rc_window_controller.rb,
78
+ lib/rucola/rucola_support/rc_app.rb,
79
+ test/test_rc_app.rb,
80
+ test/test_rc_window_controller.rb:
81
+
82
+ - Added to the Rucola::RCApp module:
83
+ #path_for_controller, #path_for_model, #path_for_view, #path_for_asset
84
+ - Updated RCWindowController to use the new #path_for_view method.
85
+
86
+ 2007-10-30 Eloy Duran <e.duran@superalloy.nl>
87
+
88
+ * lib/rucola/rucola_support/controllers/rc_window_controller.rb,
89
+ lib/rucola/rucola_support/rc_app.rb,
90
+ test/test_rc_app.rb:
91
+
92
+ Added Rucola::RCApp#views_path and updated RCWindowController
93
+ to use that new method instead of RUBYCOCOA_ROOT.
94
+
95
+ 2007-10-30 Eloy Duran <e.duran@superalloy.nl>
96
+
97
+ * Manifest.txt,
98
+ lib/rucola/rucola_support.rb,
99
+ lib/rucola/rucola_support/controllers/rc_controller.rb,
100
+ lib/rucola/rucola_support/rc_app.rb,
101
+ test/test_helper.rb,
102
+ test/test_objc_core_ext.rb,
103
+ test/test_rc_app.rb:
104
+
105
+ - Added module Rucola::RCApp which provides shortcut methods:
106
+ #root_path, #controllers_path, #models_path, #assets_path.
107
+ - Mixin Rucola::RCApp by default in Rucola::RCController.
108
+
109
+ 2007-10-29 Justin Palmer <justin@activereload.net>
110
+
111
+ * app_generators/rucola/templates/app/controllers/application_controller.rb,
112
+ app_generators/rucola/templates/misc/English.lproj/MainMenu.nib/classes.nib,
113
+ app_generators/rucola/templates/misc/English.lproj/MainMenu.nib/info.nib,
114
+ app_generators/rucola/templates/misc/English.lproj/MainMenu.nib/keyedobjects.nib,
115
+ test/fixtures/MainMenu.nib/classes.nib,
116
+ test/fixtures/MainMenu.nib/info.nib,
117
+ test/fixtures/MainMenu.nib/keyedobjects.nib:
118
+
119
+ Update application_controller and tests to use snake case instead
120
+ of camel case for default outlet.
121
+
122
+
123
+ 2007-10-29 Justin Palmer <justin@activereload.net>
124
+
125
+ * app_generators/rucola/templates/config/ib_external_class_defs.yml,
126
+ lib/rucola/tasks/interface_builder.rake:
127
+
128
+ Change ib_external_class_defs.yml to structure classes by hierarchy and
129
+ allow nesting.
130
+
131
+
132
+ 2007-10-29 Eloy Duran <e.duran@superalloy.nl>
133
+
134
+ * Manifest.txt,
135
+ app_generators/rucola/rucola_generator.rb,
136
+ app_generators/rucola/templates/Rakefile.erb,
137
+ app_generators/rucola/templates/config/ib_external_class_defs.yml,
138
+ app_generators/rucola/templates/misc/nibtool_helper.rb,
139
+ lib/rucola/tasks,
140
+ lib/rucola/tasks/freeze.rake,
141
+ lib/rucola/tasks/interface_builder.rake,
142
+ lib/rucola/tasks/main.rake,
143
+ lib/rucola/tasks/xcode.rake,
144
+ test/test_rucola_generator.rb:
145
+
146
+ - Moved the rake tasks from the Rakefile that gets created in the app dir
147
+ to rucola/tasks. This way the tasks will also be updated in an application
148
+ if the Rucola gem was updated.
149
+ - Removed nibtool_helper.rb in favor of a yaml file ib_external_class_defs.yml.
150
+ - The basic Rucola controller classes are no longer defined in this helper file,
151
+ but instead read from the actual rucola/rucola_support/controllers/ dir.
152
+
153
+ 2007-10-29 Justin Palmer <justin@activereload.net>
154
+
155
+ * app_generators/rucola/templates/script/plugin:
156
+
157
+ Move plugins directory to extras/plugins
158
+
159
+ 2007-10-29 Justin Palmer <justin@activereload.net>
160
+
161
+ * Manifest.txt,
162
+ TODO,
163
+ lib/rucola/rucola_support.rb,
164
+ lib/rucola/rucola_support/controllers.rb:
165
+
166
+ Add controllers.rb in rucola_support to include all files in controller/ directory.
167
+
168
+ 2007-10-29 Eloy Duran <e.duran@superalloy.nl>
169
+
170
+ * TODO:
171
+
172
+ Updated TODO and removed items that are DONE.
173
+
174
+ 2007-10-29 Eloy Duran <e.duran@superalloy.nl>
175
+
176
+ * Manifest.txt,
177
+ Rakefile,
178
+ app_generators/rucola/templates/app/controllers/application_controller.rb,
179
+ app_generators/rucola/templates/misc/English.lproj/MainMenu.nib/classes.nib,
180
+ app_generators/rucola/templates/misc/nibtool_helper.rb,
181
+ lib/rucola/rucola_support.rb,
182
+ lib/rucola/rucola_support/controllers,
183
+ lib/rucola/rucola_support/controllers/rc_controller.rb,
184
+ lib/rucola/rucola_support/controllers/rc_window_controller.rb,
185
+ lib/rucola/rucola_support/core_ext/objc/nsobject.rb,
186
+ lib/rucola/rucola_support/initialize_hooks.rb,
187
+ lib/rucola/rucola_support/notifications/notifications.rb,
188
+ lib/rucola/rucola_support/window_controller.rb,
189
+ rucola_generators/controller/templates/controller_template.rb.erb,
190
+ rucola_generators/window_controller/templates/Window.nib/classes.nib.erb,
191
+ rucola_generators/window_controller/templates/Window.nib/info.nib,
192
+ rucola_generators/window_controller/templates/Window.nib/keyedobjects.nib,
193
+ rucola_generators/window_controller/templates/window_controller_template.rb.erb,
194
+ test/test_notifications.rb,
195
+ test/test_objc_core_ext.rb,
196
+ test/test_rc_window_controller.rb,
197
+ test/test_window_controller.rb:
198
+
199
+ - Refactored the mixin scheme. Only subclasses of
200
+ a class that starts with 'Rucola::RC' will automatically
201
+ get the default mixins mixed in.
202
+ This happens in core_ext/objc/nsobject.rb.
203
+ - Moved the initialize hook stuff into it's own module.
204
+ - By default Rucola::RC subclasses will now have mixed in:
205
+ Rucola::InitializeHooks & Rucola::Notifications
206
+ - Added an empty Rucola::RCController class from which all
207
+ anonymous controllers should inherit so that they get
208
+ the correct modules mixed in.
209
+ - Moved rc_controller.rb & rc_window_controller.rb into rucola_support/controllers.
210
+ - Updated tests.
211
+ - Updated nib window template to use the new RCWindowController class.
212
+ - Updated the nibtool_helper.rb file to use the new Rucola::RC classes.
213
+
214
+ 2007-10-29 Eloy Duran <e.duran@superalloy.nl>
215
+
216
+ * app_generators/rucola/templates/script/plugin,
217
+ lib/rucola/nib.rb:
218
+
219
+ Fixed annoying warnings about constants already being defined when requiring FileUtils.
220
+ For some strange reason this happens when you require 'FileUtils' but not with 'fileutils'.
221
+
222
+ 2007-10-28 Justin Palmer <justin@activereload.net>
223
+
224
+ * Manifest.txt,
225
+ lib/rucola/rucola_support/notifications,
226
+ lib/rucola/rucola_support/notifications.rb,
227
+ lib/rucola/rucola_support/notifications/notifications.rb:
228
+
229
+ - Forgot to add the notification files. Oops.
230
+ - Updated notification docs.
231
+
232
+ 2007-10-28 Justin Palmer <justin@activereload.net>
233
+
234
+ * test/test_notifications.rb,
235
+ Manifest.txt,
236
+ lib/rucola/rucola_support.rb,
237
+ lib/rucola/rucola_support/acts_as,
238
+ lib/rucola/rucola_support/acts_as.rb,
239
+ lib/rucola/rucola_support/acts_as/notifiable.rb,
240
+ test/test_acts_as.rb,
241
+ test/test_acts_as_notifiable.rb:
242
+
243
+ Move acts_as notifiable parts to Rucola::Notifications and update tests.
244
+
245
+
246
+ 2007-10-29 Eloy Duran <e.duran@superalloy.nl>
247
+
248
+ * app_generators/rucola/templates/Rakefile.erb,
249
+ lib/rucola/nib.rb,
250
+ test/test_nib.rb:
251
+
252
+ - Added Rucola::Nib::Classes#has_class?.
253
+ - Rake task ib:update now loops through all
254
+ controllers and nibs and updates the class
255
+ definition if it finds the class in a nib.
256
+
257
+ 2007-10-29 Eloy Duran <e.duran@superalloy.nl>
258
+
259
+ * lib/rucola/rucola_support/acts_as/notifiable.rb,
260
+ test/test_acts_as_notifiable.rb:
261
+
262
+ - Removed the acts_as_foo class method stuff.
263
+ This module should be mixed in by default.
264
+ - Added ClassMethod#notify which will just
265
+ call a method when a notification is posted.
266
+ - Cleaned up test file.
267
+
268
+ 2007-10-28 Justin Palmer <justin@activereload.net>
269
+
270
+ * Manifest.txt,
271
+ app_generators/rucola/templates/Rakefile.erb,
272
+ lib/rucola/rucola_support/acts_as.rb,
273
+ lib/rucola/rucola_support/acts_as/notifiable.rb,
274
+ lib/rucola/rucola_support/core_ext.rb,
275
+ lib/rucola/rucola_support/core_ext/objc.rb,
276
+ lib/rucola/rucola_support/core_ext/objc/nsobject.rb,
277
+ lib/rucola/rucola_support/core_ext/ruby.rb,
278
+ lib/rucola/rucola_support/core_ext/ruby/string.rb,
279
+ rucola_generators/controller/controller_generator.rb,
280
+ rucola_generators/window_controller/window_controller_generator.rb,
281
+ test/test_acts_as.rb,
282
+ test/test_acts_as_notifiable.rb,
283
+ test/test_core_ext.rb,
284
+ test/test_helper.rb,
285
+ test/test_objc_core_ext.rb,
286
+ test/test_window_controller.rb:
287
+
288
+ Update test to include rucola_support instead of individual files. All test files should included the
289
+ test helper. Notifiable test fail, but I'm working on that.
290
+
291
+
292
+ 2007-10-28 Justin Palmer <justin@activereload.net>
293
+
294
+ * lib/rucola/rucola_support/core_ext/ruby/string.rb,
295
+ lib/rucola/rucola_support/core_ext/string.rb:
296
+
297
+ Remove duplicate string.rb. string.rb can be found in lib/rucola/rucola_support/core_ext/ruby/
298
+
299
+
300
+ 2007-10-28 Eloy Duran <e.duran@superalloy.nl>
301
+
302
+ * app_generators/rucola/rucola_generator.rb,
303
+ app_generators/rucola/templates/misc/English.lproj/MainMenu.nib/classes.nib,
304
+ app_generators/rucola/templates/misc/English.lproj/MainMenu.nib/info.nib,
305
+ app_generators/rucola/templates/misc/English.lproj/MainMenu.nib/keyedobjects.nib,
306
+ app_generators/rucola/templates/misc/English.lproj/MainMenu.nib/objects.nib,
307
+ lib/rucola/keyed_objects_nib.rb,
308
+ lib/rucola/nib.rb,
309
+ rucola_generators/window_controller/window_controller_generator.rb,
310
+ test/fixtures,
311
+ test/fixtures/MainMenu.nib/classes.nib,
312
+ test/fixtures/MainMenu.nib/info.nib,
313
+ test/fixtures/MainMenu.nib/keyedobjects.nib,
314
+ test/fixtures/MainMenu.nib/objects.nib,
315
+ test/test_nib.rb,
316
+ test/test_rucola_generator.rb:
317
+
318
+ - Moved KeyedObjectsNib to Rucola::Nib::KeyedObjects.
319
+ - Added tests for Rucola::Nib::KeyedObjects.
320
+ - MainMenu.nib still shipped with the old object.nib format
321
+ instead of the newer keyedobjects.nib. This is updated.
322
+ - Refactored and cleaned a bit.
323
+
324
+ 2007-10-28 Justin Palmer <justin@activereload.net>
325
+
326
+ * lib/rucola/rucola_support/core_ext/objc/nsobject.rb,
327
+ lib/rucola/rucola_support/core_ext/ruby/string.rb,
328
+ Manifest.txt,
329
+ TODO,
330
+ lib/rucola/initializer.rb,
331
+ lib/rucola/rucola_support.rb,
332
+ lib/rucola/rucola_support/core_ext.rb,
333
+ lib/rucola/rucola_support/core_ext/objc,
334
+ lib/rucola/rucola_support/core_ext/objc.rb,
335
+ lib/rucola/rucola_support/core_ext/ruby,
336
+ lib/rucola/rucola_support/core_ext/ruby.rb,
337
+ lib/rucola/rucola_support/core_ext/string.rb,
338
+ lib/rucola/rucola_support/objc_core_ext,
339
+ lib/rucola/rucola_support/objc_core_ext/nsobject.rb:
340
+
341
+ - Restructure rucloa_support directory moving the core_ext's under core_ext/ruby, core_ext/objc.
342
+ Use rails-like policy for including directories of related files.
343
+ - Remove recursive file inclusion for app/ in favor of Ruby's build in Dir[**/*.rb]
344
+
345
+ 2007-10-28 Eloy Duran <e.duran@superalloy.nl>
346
+
347
+ * Manifest.txt,
348
+ lib/rucola/nib.rb,
349
+ lib/rucola/rucola_support/core_ext/string.rb,
350
+ lib/rucola/xcode.rb,
351
+ rucola_generators/controller/controller_generator.rb,
352
+ test/fixtures,
353
+ test/fixtures/MainMenu.nib,
354
+ test/fixtures/MainMenu.nib/objects.nib,
355
+ test/fixtures/MainMenu.nib/info.nib,
356
+ test/fixtures/MainMenu.nib/classes.nib,
357
+ test/test_controller_generator.rb,
358
+ test/test_core_ext.rb,
359
+ test/test_helper.rb,
360
+ test/test_nib.rb:
361
+
362
+ - Added tests for String#camel_case. There was a bug; 'FooBar'.camel_case => 'Foobar'
363
+ - Added Rucola::Nib::Classes, which is a simple interface to a classes.nib file.
364
+ Atm it can only open, add_class and save.
365
+ - Anonymous controller generator now also is able to add the generated controller class
366
+ to nibs. If no nibs are specified it will ask to update MainMenu.nib.
367
+ If nibs are specified it will add them to those nibs without questions asked.
368
+ - The added fixture should be removed! Bad Eloy :)
369
+
370
+ 2007-10-27 Justin Palmer <justin@activereload.net>
371
+
372
+ * ChangeLog,
373
+ test/test_controller_generator.rb:
374
+
375
+ Added test for controller generator.
376
+
377
+ 2007-10-27 Justin Palmer <justin@activereload.net>
378
+
379
+ * test/test_controller_generator.rb,
380
+ rucola_generators/controller,
381
+ rucola_generators/controller/USAGE,
382
+ rucola_generators/controller/controller_generator.rb,
383
+ rucola_generators/controller/templates/controller_template.rb.erb,
384
+ rucola_generators/controller/templates/test_controller_template.rb.erb:
385
+
386
+ - Added controller generator to generate generic controllers that inherit from
387
+ NSObject.
388
+ - Updated the usage file for window_controller generator with basic instructions.
389
+
390
+ 2007-10-27 Eloy Duran <e.duran@superalloy.nl>
391
+
392
+ * Manifest.txt,
393
+ TODO,
394
+ app_generators/rucola/rucola_generator.rb,
395
+ app_generators/rucola/templates/script,
396
+ app_generators/rucola/templates/script/plugin,
397
+ test/test_rucola_generator.rb:
398
+
399
+ Added script/plugin which allows you to install plugins from a svn repo.
400
+ It will get plugin_index from the Rucola repo, this lists plugins in the
401
+ Rucola repo for easy install.
402
+
403
+ 2007-10-27 Eloy Duran <e.duran@superalloy.nl>
404
+
405
+ * Rakefile,
406
+ TODO,
407
+ lib/rucola/rucola_support/acts_as/notifiable.rb,
408
+ test/test_acts_as_notifiable.rb:
409
+
410
+ - Changed output of tests to spec format.
411
+ - #notify_on now also takes a symbol which will be expanded.
412
+ So :application_did_finish_launching becomes NSApplicationDidFinishLaunchingNotification.
413
+ - Added #notification_prefix which allows you to register notification name prefix shortcuts.
414
+ So :application_... becomes :app_... (this one is added by default.)
415
+
416
+ 2007-10-26 Eloy Duran <e.duran@superalloy.nl>
417
+
418
+ * branches/plugins/SACrashReporter/lib/SACrashReporter.rb,
419
+ branches/plugins/SACrashReporter/test/test_SACrashReporter.rb,
420
+ branches/plugins/SACrashReporter/License:
421
+
422
+ - Added the MIT license to SACrashReporter.
423
+ - Fixed a bug with 1.8.2, which does not support Net::HTTP #post_form.
424
+ Reported by Satoshi Nakagawa.
425
+
426
+ 2007-10-26 Eloy Duran <e.duran@superalloy.nl>
427
+
428
+ * branches/plugins/SACrashReporter/Rakefile,
429
+ branches/plugins/SACrashReporter/SACrashReporter.rb,
430
+ branches/plugins/SACrashReporter/init.rb,
431
+ branches/plugins/SACrashReporter/install.rb,
432
+ branches/plugins/SACrashReporter/lib,
433
+ branches/plugins/SACrashReporter/lib/Report.rb,
434
+ branches/plugins/SACrashReporter/lib/SACrashReporter.nib,
435
+ branches/plugins/SACrashReporter/lib/SACrashReporter.nib/classes.nib,
436
+ branches/plugins/SACrashReporter/lib/SACrashReporter.nib/info.nib,
437
+ branches/plugins/SACrashReporter/lib/SACrashReporter.nib/keyedobjects.nib,
438
+ branches/plugins/SACrashReporter/lib/SACrashReporter.rb,
439
+ branches/plugins/SACrashReporter/sample_app,
440
+ branches/plugins/SACrashReporter/sample_app/Crasher,
441
+ branches/plugins/SACrashReporter/sample_app/Crasher/AppController.rb,
442
+ branches/plugins/SACrashReporter/sample_app/Crasher/Crasher.xcodeproj,
443
+ branches/plugins/SACrashReporter/sample_app/Crasher/Crasher.xcodeproj/eloy.mode1,
444
+ branches/plugins/SACrashReporter/sample_app/Crasher/Crasher.xcodeproj/eloy.pbxuser,
445
+ branches/plugins/SACrashReporter/sample_app/Crasher/Crasher.xcodeproj/project.pbxproj,
446
+ branches/plugins/SACrashReporter/sample_app/Crasher/English.lproj,
447
+ branches/plugins/SACrashReporter/sample_app/Crasher/English.lproj/InfoPlist.strings,
448
+ branches/plugins/SACrashReporter/sample_app/Crasher/English.lproj/MainMenu.nib,
449
+ branches/plugins/SACrashReporter/sample_app/Crasher/English.lproj/MainMenu.nib/classes.nib,
450
+ branches/plugins/SACrashReporter/sample_app/Crasher/English.lproj/MainMenu.nib/info.nib,
451
+ branches/plugins/SACrashReporter/sample_app/Crasher/English.lproj/MainMenu.nib/objects.nib,
452
+ branches/plugins/SACrashReporter/sample_app/Crasher/Info.plist,
453
+ branches/plugins/SACrashReporter/sample_app/Crasher/Rakefile,
454
+ branches/plugins/SACrashReporter/sample_app/Crasher/main.m,
455
+ branches/plugins/SACrashReporter/sample_app/Crasher/rb_main.rb,
456
+ branches/plugins/SACrashReporter/sample_app/crash_reporter.php,
457
+ branches/plugins/SACrashReporter/test,
458
+ branches/plugins/SACrashReporter/test/SATestHelper.rb,
459
+ branches/plugins/SACrashReporter/test/test.crash.log,
460
+ branches/plugins/SACrashReporter/test/test_Report.rb,
461
+ branches/plugins/SACrashReporter/test/test_SACrashReporter.rb,
462
+ branches/plugins/SACrashReporter/test/test_helper.rb:
463
+
464
+ Imported first version of SACrashReporter plugin.
465
+
466
+ 2007-10-24 Eloy Duran <e.duran@superalloy.nl>
467
+
468
+ * app_generators/rucola/templates/Rakefile.erb:
469
+
470
+ Fixed a bug in Rakefile ib:update where the RC framework
471
+ was always expected to be in /Library/Frameworks.
472
+
473
+ 2007-10-24 Eloy Duran <e.duran@superalloy.nl>
474
+
475
+ * TODO,
476
+ app_generators/rucola/templates/Rakefile.erb:
477
+
478
+ - Fixed bug in Rakefile where the build was always expected in the project dir.
479
+ It now looks for this in the xcode prefs. Reported by Laurent Sansonetti.
480
+ - Fixed a bug in Rakefile where the current RC framework was always expected in
481
+ /Library/Frameworks it now looks for it with NSBundle. Reported by Laurent Sansonetti.
482
+
483
+ 2007-10-24 Eloy Duran <e.duran@superalloy.nl>
484
+
485
+ * Manifest.txt,
486
+ TODO,
487
+ app_generators/rucola/rucola_generator.rb,
488
+ app_generators/rucola/templates/Rakefile.erb,
489
+ app_generators/rucola/templates/misc/nibtool_helper.rb,
490
+ lib/rucola/keyed_objects_nib.rb,
491
+ rucola_generators/window_controller/templates/Window.nib/classes.nib.erb,
492
+ rucola_generators/window_controller/window_controller_generator.rb,
493
+ test/test_rucola_generator.rb,
494
+ test/test_window_controller_generator.rb:
495
+
496
+ - Added a simple lib keyed_objects_nib to interface with a keyedobjects.nib file.
497
+ - When a window controller is generated it will now also use the new keyed_objects_nib lib
498
+ to change the custom class of the File's Owner to the new window controller class.
499
+ - Added a rake task ib:update that goes through your views/*.nib and updates the
500
+ nib file according to the controller file that belongs to it.
501
+ - Added nibtool_helper.rb which is used while updating the nib to define any classes
502
+ that are needed by rb_nibtool to create a valid nib file with all the superclasses
503
+ set appropriately.
504
+
505
+ 2007-10-23 Eloy Duran <e.duran@superalloy.nl>
506
+
507
+ * Manifest.txt,
508
+ TODO,
509
+ config/hoe.rb,
510
+ lib/rucola/rucola_support/acts_as.rb,
511
+ lib/rucola/rucola_support/window_controller.rb,
512
+ rucola_generators/window_controller/templates/Window.nib/classes.nib.erb,
513
+ rucola_generators/window_controller/templates/test_window_controller_template.rb.erb,
514
+ rucola_generators/window_controller/templates/window_controller_template.rb.erb,
515
+ rucola_generators/window_controller/window_controller_generator.rb,
516
+ test/test_window_controller.rb,
517
+ test/test_window_controller_generator.rb:
518
+
519
+ - Did some minor cleaning.
520
+ - Fixed every string use of capitalize and downcase with camel_case and snake_case.
521
+ - Added test for the window controller.
522
+ - The WindoController does not longer expect it's subclass to be
523
+ named FooWindowController, but FooController.
524
+ Of course FooWindowController should still work.
525
+
526
+ 2007-10-22 Eloy Duran <e.duran@superalloy.nl>
527
+
528
+ * test/test_objc_core_ext.rb,
529
+ test/test_acts_as_notifiable.rb,
530
+ test/test_acts_as.rb,
531
+ lib/rucola/rucola_support/acts_as.rb,
532
+ lib/rucola/rucola_support/objc_core_ext,
533
+ lib/rucola/rucola_support/objc_core_ext/nsobject.rb,
534
+ lib/rucola/rucola_support/core_ext,
535
+ lib/rucola/rucola_support/core_ext/string.rb,
536
+ lib/rucola/rucola_support/acts_as,
537
+ lib/rucola/rucola_support/acts_as/notifiable.rb,
538
+ lib/rucola/initializer.rb,
539
+ test/test_window_controller_generator.rb,
540
+ test/test_xcode.rb,
541
+ Manifest.txt,
542
+ TODO:
543
+ - Added a module called Rucola::ActsAs which is the namespace that will hold any
544
+ ActsAs modules. It also has a class method register_acts_as which makes
545
+ the act available to any OSX::NSObject subclasses.
546
+ - Added a first ActsAs module, namely Rucola::ActsAs::Notifiable.
547
+ It eases the registering and handling of notifications.
548
+ - Did some small cleanup stuff.
549
+
550
+ 2007-10-20 Eloy Duran <e.duran@superalloy.nl>
551
+
552
+ * lib/rucola/initializer.rb:
553
+ Fixed the last fix so that it only uses directories.
554
+
555
+ 2007-10-20 Eloy Duran <e.duran@superalloy.nl>
556
+
557
+ * lib/rucola/initializer.rb:
558
+ Fixed a bug where hidden files in the plugins dir where also required.
559
+
560
+ 2007-10-20 Eloy Duran <e.duran@superalloy.nl>
561
+
562
+ * lib/rucola/initializer.rb:
563
+ Added basic code which requires any plugins installed
564
+ in vendor/plugins. It requires the init.rb file.
565
+ This is done direcly after loading the Initializer class.
566
+ All the pathnames to the plugins are stored in an array @@required_plugins.
567
+
568
+ 2007-10-20 Eloy Duran <e.duran@superalloy.nl>
569
+
570
+ * app_generators/rucola/templates/Rakefile.erb:
571
+ Added task rc:freeze:current which freezes and bundles
572
+ /Library/Frameworks/RubyCocoa.framework.
573
+
574
+ 2007-10-20 Eloy Duran <e.duran@superalloy.nl>
575
+
576
+ * Manifest.txt,
577
+ lib/rucola/initializer.rb:
578
+ Some minor cleanup.
579
+
580
+ 2007-10-20 Eloy Duran <e.duran@superalloy.nl>
581
+
582
+ * test/test_xcode.rb,
583
+ lib/rucola/xcode.rb:
584
+ Added the last test for the xcode lib.
585
+
586
+ 2007-10-19 Eloy Duran <e.duran@superalloy.nl>
587
+
588
+ Updated the manifest.
589
+
590
+ 2007-10-19 Eloy Duran <e.duran@superalloy.nl>
591
+
592
+ - Added tests for the xcode class.
593
+ Only still need to do the biggest one.
594
+ - Fixed a bug in the Rakefile.
595
+
596
+ 2007-10-19 Eloy Duran <e.duran@superalloy.nl>
597
+
598
+ Added todo list.
599
+
600
+ 2007-10-19 Eloy Duran <e.duran@superalloy.nl>
601
+
602
+ - Added a basic lib which can alter xcode projects.
603
+ - Added a new Rakefile with basic tasks and also
604
+ uses the xcode lib to do stuff like bundle the framework.
605
+
606
+ 2007-10-19 Eloy Duran <e.duran@superalloy.nl>
607
+
608
+ - Finished basic app generator.
609
+ - Added a window_controller generator which uses
610
+ Rucola::WindowController::Base as it's superclass.
611
+ - Added a working test_helper.
612
+
613
+ 2007-10-18 Eloy Duran <e.duran@superalloy.nl>
614
+
615
+ Finished basic new application template.
616
+
617
+ 2007-10-18 Eloy Duran <e.duran@superalloy.nl>
618
+
619
+ Added the original initializer lib by Justin Palmer,
620
+ and placed the classes under the Rucola module instead of OSX.
621
+
622
+ 2007-10-18 Eloy Duran <e.duran@superalloy.nl>
623
+
624
+ Added application generator skeleton.
625
+
626
+ 2007-10-18 Eloy Duran <e.duran@superalloy.nl>
627
+
628
+ Initial import into local Git repo.