rucola 0.0.3 → 0.5.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.
- data/ChangeLog +468 -0
- data/History.txt +25 -0
- data/License.txt +1 -1
- data/Manifest.txt +32 -0
- data/README.txt +9 -67
- data/Rakefile +39 -31
- data/TODO +10 -18
- data/app_generators/rucola/rucola_generator.rb +15 -8
- data/app_generators/rucola/templates/Rakefile.erb +35 -7
- data/app_generators/rucola/templates/config/boot.rb +0 -1
- data/app_generators/rucola/templates/config/dependencies.rb +31 -0
- data/app_generators/rucola/templates/config/environment.rb +0 -1
- data/app_generators/rucola/templates/config/environments/debug.rb +13 -1
- data/app_generators/rucola/templates/config/environments/release.rb +15 -1
- data/app_generators/rucola/templates/config/environments/test.rb +7 -1
- data/app_generators/rucola/templates/misc/rb_main.rb.erb +12 -1
- data/app_generators/rucola/templates/project.pbxproj.erb +4 -0
- data/app_generators/rucola/templates/script/console +10 -0
- data/app_generators/rucola/templates/test/controllers/test_application_controller.rb +22 -10
- data/app_generators/rucola/templates/test/test_helper.rb +1 -0
- data/bin/rucola +4 -2
- data/lib/rucola/dependencies.rb +241 -0
- data/lib/rucola/dependencies/exclusions.rb +20 -0
- data/lib/rucola/dependencies/override_require_and_gem.rb +30 -0
- data/lib/rucola/dependencies/resolver.rb +68 -0
- data/lib/rucola/fsevents.rb +108 -0
- data/lib/rucola/initializer.rb +149 -117
- data/lib/rucola/log.rb +61 -0
- data/lib/rucola/nib.rb +3 -3
- data/lib/rucola/reloader.rb +39 -0
- data/lib/rucola/ruby_debug.rb +27 -0
- data/lib/rucola/rucola_support.rb +1 -2
- data/lib/rucola/rucola_support/core_ext.rb +4 -2
- data/lib/rucola/rucola_support/core_ext/objc.rb +9 -4
- data/lib/rucola/rucola_support/core_ext/objc/nsimage.rb +22 -0
- data/lib/rucola/rucola_support/core_ext/ruby.rb +11 -4
- data/lib/rucola/rucola_support/core_ext/ruby/file.rb +11 -0
- data/lib/rucola/rucola_support/core_ext/ruby/kernel.rb +16 -0
- data/lib/rucola/rucola_support/core_ext/ruby/object.rb +47 -0
- data/lib/rucola/rucola_support/core_ext/ruby/string.rb +8 -0
- data/lib/rucola/rucola_support/notifications/notifications.rb +26 -28
- data/lib/rucola/rucola_support/rc_app.rb +18 -0
- data/lib/rucola/tasks/dependencies.rake +49 -0
- data/lib/rucola/tasks/deploy.rake +131 -0
- data/lib/rucola/tasks/main.rake +39 -6
- data/lib/rucola/tasks/xcode.rake +54 -11
- data/lib/rucola/test_case.rb +138 -0
- data/lib/rucola/test_helper.rb +11 -5
- data/lib/rucola/version.rb +2 -2
- data/lib/rucola/xcode.rb +39 -9
- data/rucola_generators/controller/templates/test_controller_template.rb.erb +19 -7
- data/rucola_generators/simple_model/USAGE +5 -0
- data/rucola_generators/simple_model/simple_model_generator.rb +54 -0
- data/rucola_generators/simple_model/templates/simple_model.rb.erb +2 -0
- data/rucola_generators/simple_model/templates/test_simple_model.rb.erb +11 -0
- data/rucola_generators/window_controller/templates/test_window_controller_template.rb.erb +24 -13
- data/test/fixtures/dependencies/foo.rb +2 -0
- data/test/fixtures/dependencies/foo/bar.rb +0 -0
- data/test/fixtures/dependencies/foo/baz.rb +0 -0
- data/test/fixtures/dependencies/requires_fileutils.rb +1 -0
- data/test/fixtures/some_reloadable_class.rb +4 -0
- data/test/test_core_ext.rb +80 -0
- data/test/test_dependencies.rb +205 -0
- data/test/test_fsevents.rb +152 -0
- data/test/test_helper.rb +30 -1
- data/test/test_initializer.rb +56 -23
- data/test/test_log.rb +44 -0
- data/test/test_objc_core_ext.rb +23 -0
- data/test/test_rc_app.rb +5 -0
- data/test/test_reloader.rb +28 -0
- data/test/test_rucola_generator.rb +7 -0
- data/test/test_simple_model_generator.rb +48 -0
- data/test/test_xcode.rb +85 -5
- data/website/index.html +17 -91
- data/website/index.txt +14 -81
- data/website/template.rhtml +1 -1
- metadata +120 -76
data/ChangeLog
CHANGED
@@ -1,3 +1,471 @@
|
|
1
|
+
2008-7-11 Eloy Duran <e.duran@superalloy.nl>
|
2
|
+
|
3
|
+
* History.txt,
|
4
|
+
License.txt,
|
5
|
+
README.txt,
|
6
|
+
TODO,
|
7
|
+
bin/rucola,
|
8
|
+
lib/rucola/dependencies/override_require_and_gem.rb,
|
9
|
+
lib/rucola/dependencies/resolver.rb,
|
10
|
+
lib/rucola/nib.rb,
|
11
|
+
lib/rucola/ruby_debug.rb,
|
12
|
+
lib/rucola/rucola_support/notifications/notifications.rb,
|
13
|
+
lib/rucola/test_helper.rb,
|
14
|
+
lib/rucola/version.rb,
|
15
|
+
lib/rucola/xcode.rb,
|
16
|
+
website/index.html,
|
17
|
+
website/index.txt,
|
18
|
+
website/template.rhtml:
|
19
|
+
|
20
|
+
Prepared for release 0.5. This will be the final ChangeLog entry, after this we'll rely on the nice git logs. Yay! :)
|
21
|
+
|
22
|
+
2008-5-1 Eloy Duran <e.duran@superalloy.nl>
|
23
|
+
|
24
|
+
* lib/rucola/tasks/xcode.rake:
|
25
|
+
Moved the running of a build into it's own task so building and running can be done freely from other tasks.
|
26
|
+
|
27
|
+
2008-4-12 Eloy Duran <e.duran@superalloy.nl>
|
28
|
+
|
29
|
+
* app_generators/rucola/templates/test/controllers/test_application_controller.rb,
|
30
|
+
app_generators/rucola/templates/test/test_helper.rb,
|
31
|
+
lib/rucola/test_helper.rb,
|
32
|
+
rucola_generators/controller/templates/test_controller_template.rb.erb,
|
33
|
+
rucola_generators/window_controller/templates/test_window_controller_template.rb.erb:
|
34
|
+
|
35
|
+
Added Rucola::TestCase to the default test_helper and adjusted the controller test templates to use Rucola::TestCase.
|
36
|
+
|
37
|
+
2008-3-16 Eloy Duran <e.duran@superalloy.nl>
|
38
|
+
|
39
|
+
* Manifest.txt,
|
40
|
+
lib/rucola/test_case.rb:
|
41
|
+
|
42
|
+
Added a test case mixin which sets up a test case for a controller and defines helper methods and creates stubs for all ib_outlets that are defined in the controller.
|
43
|
+
|
44
|
+
2008-3-14 Eloy Duran <e.duran@superalloy.nl>
|
45
|
+
|
46
|
+
* app_generators/rucola/templates/Rakefile.erb,
|
47
|
+
lib/rucola/tasks/main.rake:
|
48
|
+
|
49
|
+
- When deploying, start the application after building to test if the application runs before actually deploying.
|
50
|
+
- Comment the URI suggestions in an applications Rakefile.
|
51
|
+
|
52
|
+
2008-3-10 Eloy Duran <e.duran@superalloy.nl>
|
53
|
+
|
54
|
+
* app_generators/rucola/templates/Rakefile.erb,
|
55
|
+
lib/rucola/tasks/dependencies.rake,
|
56
|
+
lib/rucola/tasks/deploy.rake,
|
57
|
+
lib/rucola/tasks/main.rake,
|
58
|
+
lib/rucola/tasks/xcode.rake:
|
59
|
+
|
60
|
+
- Running the release rake task will automatically check if libs need to be bundled from the environments/release.rb file.
|
61
|
+
- Added a deploy:release_notes task which looks for textile files in ReleaseNotes/AppName_Version.
|
62
|
+
- The deploy:upload task now also uploads the release notes file.
|
63
|
+
|
64
|
+
2008-3-10 Eloy Duran <e.duran@superalloy.nl>
|
65
|
+
|
66
|
+
* app_generators/rucola/templates/Rakefile.erb,
|
67
|
+
app_generators/rucola/templates/config/environment.rb,
|
68
|
+
lib/rucola/reloader.rb,
|
69
|
+
lib/rucola/tasks/deploy.rake,
|
70
|
+
test/test_log.rb:
|
71
|
+
|
72
|
+
- Added a deploy:upload task which atm can upload via scp.
|
73
|
+
(Implementing the possibility to use other schemes should be fairly simple.)
|
74
|
+
- Cleaned up the Log tests.
|
75
|
+
- Cleaned up the Reloader to use the new Log.
|
76
|
+
|
77
|
+
2008-3-10 Eloy Duran <e.duran@superalloy.nl>
|
78
|
+
|
79
|
+
* app_generators/rucola/templates/Rakefile.erb,
|
80
|
+
app_generators/rucola/templates/config/boot.rb,
|
81
|
+
app_generators/rucola/templates/config/environments/debug.rb,
|
82
|
+
app_generators/rucola/templates/config/environments/release.rb,
|
83
|
+
app_generators/rucola/templates/config/environments/test.rb,
|
84
|
+
app_generators/rucola/templates/misc/rb_main.rb.erb,
|
85
|
+
lib/rucola/dependencies.rb,
|
86
|
+
lib/rucola/initializer.rb,
|
87
|
+
lib/rucola/ruby_debug.rb,
|
88
|
+
lib/rucola/rucola_support/rc_app.rb,
|
89
|
+
lib/rucola/tasks/dependencies.rake,
|
90
|
+
test/test_initializer.rb,
|
91
|
+
test/test_rc_app.rb:
|
92
|
+
|
93
|
+
- Refactored a lot of the initializer/configuration related code.
|
94
|
+
- Now possible to bundle libs specified in release.rb, create a dmg and it works standalone!
|
95
|
+
|
96
|
+
2008-3-9 Eloy Duran <e.duran@superalloy.nl>
|
97
|
+
|
98
|
+
* Manifest.txt:
|
99
|
+
|
100
|
+
Added the Log related files to the manifest so they get included in the gem.
|
101
|
+
|
102
|
+
2008-3-9 Manfred Stienstra <manfred@fngtps.com>
|
103
|
+
|
104
|
+
* Manifest.txt,
|
105
|
+
test/test_log.rb
|
106
|
+
test/test_core_ext.rb
|
107
|
+
lib/rucola/rucola_support/core_ext/ruby/kernel.rb
|
108
|
+
lib/rucola/rucola_support/core_ext/ruby.rb
|
109
|
+
lib/rucola/log.rb
|
110
|
+
|
111
|
+
- Added the Rucola::Log class and an extension to Kernel to access it easily.
|
112
|
+
|
113
|
+
2008-3-9 Eloy Duran <e.duran@superalloy.nl>
|
114
|
+
|
115
|
+
* Manifest.txt,
|
116
|
+
app_generators/rucola/templates/Rakefile.erb,
|
117
|
+
lib/rucola/dependencies/override_require_and_gem.rb,
|
118
|
+
lib/rucola/tasks/deploy.rake,
|
119
|
+
lib/rucola/tasks/main.rake,
|
120
|
+
lib/rucola/tasks/xcode.rake:
|
121
|
+
|
122
|
+
- Oops forgot to add the override_require_and_gem.rb file in the previous commit.
|
123
|
+
- Added deploy.rake which has a task for packaging a release build in a dmg & one to write a sparkle appcast xml file.
|
124
|
+
(Still need to implement the scp/ftp tasks.)
|
125
|
+
- Added a INFO_PLIST constant which holds the dictionary loaded from the applications Info.plist file.
|
126
|
+
- The APPNAME & TARGET constants are now setup in main.rake with info from the INFO_PLIST.
|
127
|
+
- Refactored the Rakefile that's generated for an application to use the new deploy tasks and the changes to main.rake file.
|
128
|
+
|
129
|
+
2008-3-8 Eloy Duran <e.duran@superalloy.nl>
|
130
|
+
|
131
|
+
* Manifest.txt,
|
132
|
+
app_generators/rucola/templates/config/dependencies.rb,
|
133
|
+
app_generators/rucola/templates/misc/rb_main.rb.erb,
|
134
|
+
lib/rucola/dependencies.rb,
|
135
|
+
lib/rucola/dependencies/resolver.rb,
|
136
|
+
lib/rucola/initializer.rb,
|
137
|
+
lib/rucola/ruby_debug.rb,
|
138
|
+
lib/rucola/rucola_support.rb,
|
139
|
+
lib/rucola/rucola_support/core_ext.rb,
|
140
|
+
lib/rucola/rucola_support/core_ext/objc.rb,
|
141
|
+
lib/rucola/rucola_support/core_ext/ruby.rb,
|
142
|
+
lib/rucola/rucola_support/rc_app.rb,
|
143
|
+
lib/rucola/tasks/dependencies.rake,
|
144
|
+
lib/rucola/tasks/xcode.rake,
|
145
|
+
lib/rucola/test_helper.rb,
|
146
|
+
test/test_dependencies.rb,
|
147
|
+
test/test_fsevents.rb,
|
148
|
+
test/test_initializer.rb:
|
149
|
+
|
150
|
+
- Bundling all gem dependent files is now completely working.
|
151
|
+
- When a bundled version of rucola is found the app will use that and no longer use rubygems.
|
152
|
+
(Still need to allow the dev to specify what is and sn't allowed. Eg. Gems, site etc.)
|
153
|
+
- Refactored all unnecessary uses of RUBYCOCOA_ENV to use the following new methods on Rucola::RCApp:
|
154
|
+
#env, #test?, #debug?, #release?
|
155
|
+
|
156
|
+
2008-3-7 Eloy Duran <e.duran@superalloy.nl>
|
157
|
+
|
158
|
+
* lib/rucola/initializer.rb,
|
159
|
+
lib/rucola/tasks/main.rake,
|
160
|
+
lib/rucola/tasks/xcode.rake:
|
161
|
+
|
162
|
+
Fixed setting the correct env and added a shortcut task: rake release
|
163
|
+
|
164
|
+
2008-3-7 Eloy Duran <e.duran@superalloy.nl>
|
165
|
+
|
166
|
+
* Manifest.txt,
|
167
|
+
app_generators/rucola/templates/config/dependencies.rb,
|
168
|
+
bin/rucola,
|
169
|
+
lib/rucola/dependencies,
|
170
|
+
lib/rucola/dependencies.rb,
|
171
|
+
lib/rucola/dependencies/exclusions.rb,
|
172
|
+
lib/rucola/dependencies/resolver.rb,
|
173
|
+
lib/rucola/initializer.rb,
|
174
|
+
test/test_dependencies.rb:
|
175
|
+
|
176
|
+
- Changed the actual dependency resolving to happen in a separate ruby process. (This fixes for instance the mess that activesupport makes of #require etc.)
|
177
|
+
- Added the possibility to exclude certain libraries from being resolved. eg: Rucola::Dependencies.exclude(/some_lib/)
|
178
|
+
- We now require all the files that would normally be needed by an application directly in initializer so that the dependecy resolver can also resolve Rucola itself.
|
179
|
+
- Fixed some minor stuff.
|
180
|
+
|
181
|
+
2008-3-7 Eloy Duran <e.duran@superalloy.nl>
|
182
|
+
|
183
|
+
* app_generators/rucola/templates/project.pbxproj.erb:
|
184
|
+
|
185
|
+
Add lib/ to the xcode project template.
|
186
|
+
|
187
|
+
2008-2-25 Eloy Duran <e.duran@superalloy.nl>
|
188
|
+
|
189
|
+
* lib/rucola/rucola_support/core_ext/objc/nsimage.rb,
|
190
|
+
test/test_objc_core_ext.rb:
|
191
|
+
|
192
|
+
Also find images in app/assets with extension.
|
193
|
+
|
194
|
+
2008-2-20 Eloy Duran <e.duran@superalloy.nl>
|
195
|
+
|
196
|
+
* lib/rucola/initializer.rb,
|
197
|
+
test/test_initializer.rb:
|
198
|
+
|
199
|
+
Fixed bug when directories in vendor/plugins exist that don't have a init.rb file.
|
200
|
+
Reported by Jelle Helsen.
|
201
|
+
|
202
|
+
2008-2-15 Eloy Duran <e.duran@superalloy.nl>
|
203
|
+
|
204
|
+
* test/test_fsevents.rb:
|
205
|
+
|
206
|
+
Removed redundant, and unused, test.
|
207
|
+
|
208
|
+
2008-2-15 Manfred Stienstra <manfred@fngtps.com>
|
209
|
+
|
210
|
+
* ChangeLog,
|
211
|
+
lib/rucola/fsevents.rb,
|
212
|
+
test/test_fsevents.rb:
|
213
|
+
|
214
|
+
- Accept options hash in Rucola::FSEvents#new to set configuration of the event listener.
|
215
|
+
|
216
|
+
2008-2-15 Manfred Stienstra <manfred@fngtps.com>
|
217
|
+
|
218
|
+
* lib/rucola/fsevents.rb,
|
219
|
+
test/test_dependencies.rb,
|
220
|
+
test/test_reloader.rb:
|
221
|
+
|
222
|
+
- Made tests green.
|
223
|
+
|
224
|
+
2008-2-15 Manfred Stienstra <manfred@fngtps.com>
|
225
|
+
|
226
|
+
* Rakefile:
|
227
|
+
|
228
|
+
- Added rdoc task
|
229
|
+
|
230
|
+
2008-2-8 Eloy Duran <e.duran@superalloy.nl>
|
231
|
+
|
232
|
+
* Manifest.txt,
|
233
|
+
app_generators/rucola/rucola_generator.rb,
|
234
|
+
app_generators/rucola/templates/config/dependencies.rb,
|
235
|
+
lib/rucola/reloader.rb,
|
236
|
+
lib/rucola/tasks/main.rake,
|
237
|
+
test/test_rucola_generator.rb:
|
238
|
+
|
239
|
+
- Added 'config/dependencies.rb' to the app generator.
|
240
|
+
- Added a 'update' rake task, which will simply run the rucola generator again so you can add/update files that were added in a new version of Rucola.
|
241
|
+
- Reloader will now also watch the model files and do a syntax check of the file before loading it and warn if loading a file would have caused a SyntaxError.
|
242
|
+
|
243
|
+
2008-2-2 Eloy Duran <e.duran@superalloy.nl>
|
244
|
+
|
245
|
+
* Manifest.txt,
|
246
|
+
TODO,
|
247
|
+
app_generators/rucola/rucola_generator.rb,
|
248
|
+
app_generators/rucola/templates/script/console,
|
249
|
+
lib/rucola/initializer.rb,
|
250
|
+
test/test_rucola_generator.rb:
|
251
|
+
|
252
|
+
Added a script/console script which will run a irb console with the application loaded.
|
253
|
+
From Jelle Helsen (http://www.hcode.be/wordpress/2008/01/29/simple-rucola-console-script/).
|
254
|
+
|
255
|
+
2008-2-2 Eloy Duran <e.duran@superalloy.nl>
|
256
|
+
|
257
|
+
* lib/rucola/dependencies.rb,
|
258
|
+
lib/rucola/tasks/dependencies.rake,
|
259
|
+
lib/rucola/tasks/main.rake,
|
260
|
+
test/test_dependencies.rb:
|
261
|
+
|
262
|
+
- Added a "dependencies:copy" rake task, which copies he required files to 'vendor/third_party/'.
|
263
|
+
As with the "dependencies:list" task, the env var FILE_TYPES can be used to filter.
|
264
|
+
- Some more refactoring.
|
265
|
+
|
266
|
+
2008-2-2 Eloy Duran <e.duran@superalloy.nl>
|
267
|
+
|
268
|
+
* Manifest.txt,
|
269
|
+
TODO,
|
270
|
+
lib/rucola/dependencies.rb,
|
271
|
+
lib/rucola/tasks/dependencies.rake,
|
272
|
+
test/fixtures/dependencies/requires_fileutils.rb,
|
273
|
+
test/test_dependencies.rb:
|
274
|
+
|
275
|
+
- Refactored a lot of dependencies code.
|
276
|
+
- The 'dependencies:list' rake task now checks for file types with the env var FILE_TYPES.
|
277
|
+
If you only want to list for instance the gem and standard lib files that it requires,
|
278
|
+
you would use "rake dependencies:list FILE_TYPES='gem, standard'".
|
279
|
+
All types options are: gem, standard, other (outside of any of the other dirs.)
|
280
|
+
|
281
|
+
2008-1-30 Eloy Duran <e.duran@superalloy.nl>
|
282
|
+
|
283
|
+
* Manifest.txt,
|
284
|
+
lib/rucola/dependencies.rb,
|
285
|
+
lib/rucola/initializer.rb,
|
286
|
+
lib/rucola/tasks/dependencies.rake:
|
287
|
+
|
288
|
+
- Initializer will no longer break when config/dependencies.rb doesn't exist, but warn instead.
|
289
|
+
- Added a rake task dependencies:list which lists the dependencies and their required files.
|
290
|
+
|
291
|
+
2008-1-26 Eloy Duran <e.duran@superalloy.nl>
|
292
|
+
|
293
|
+
* Manifest.txt,
|
294
|
+
lib/rucola/dependencies.rb,
|
295
|
+
lib/rucola/initializer.rb,
|
296
|
+
test/test_initializer.rb:
|
297
|
+
|
298
|
+
Initializer will now look for config/dependencies.rb in RUBYCOCOA_ROOT.
|
299
|
+
(It will break if the file doesn't exist, not sure yet if we should warn.)
|
300
|
+
|
301
|
+
2008-1-26 Eloy Duran <e.duran@superalloy.nl>
|
302
|
+
|
303
|
+
* Rakefile,
|
304
|
+
lib/rucola/dependencies.rb,
|
305
|
+
test/fixtures/dependencies,
|
306
|
+
test/fixtures/dependencies/foo,
|
307
|
+
test/fixtures/dependencies/foo.rb,
|
308
|
+
test/fixtures/dependencies/foo/bar.rb,
|
309
|
+
test/fixtures/dependencies/foo/baz.rb,
|
310
|
+
test/test_dependencies.rb,
|
311
|
+
test/test_fsevents.rb,
|
312
|
+
test/test_helper.rb:
|
313
|
+
|
314
|
+
- Added a Dependencies class which can resolve the dependencies that are specified with #dependency().
|
315
|
+
TODO: It hasn't been integrated with Initializer yet and there are no docs.
|
316
|
+
- test_fsevents.rb will now cleanup after itself
|
317
|
+
- Set '$VERBOSE = nil' in test_helper.rb so that we don't get flooded by constants being redefined.
|
318
|
+
|
319
|
+
2008-1-11 Eloy Duran <e.duran@superalloy.nl>
|
320
|
+
|
321
|
+
* lib/rucola/reloader.rb:
|
322
|
+
|
323
|
+
Fixed some minor errors in the Reloader docs.
|
324
|
+
|
325
|
+
2008-1-11 Eloy Duran <e.duran@superalloy.nl>
|
326
|
+
|
327
|
+
* test/test_initializer.rb:
|
328
|
+
|
329
|
+
Fixed some errors in the naming of the specs.
|
330
|
+
|
331
|
+
2008-1-11 Eloy Duran <e.duran@superalloy.nl>
|
332
|
+
|
333
|
+
* Manifest.txt,
|
334
|
+
app_generators/rucola/templates/config/environment.rb,
|
335
|
+
lib/rucola/initializer.rb,
|
336
|
+
lib/rucola/reloader.rb,
|
337
|
+
test/fixtures/some_reloadable_class.rb,
|
338
|
+
test/test_initializer.rb,
|
339
|
+
test/test_reloader.rb:
|
340
|
+
|
341
|
+
Added Rucola::Reloader, which uses Rucola::FSEvents to watch the app/controllers path for modifications
|
342
|
+
and undefines the instance & class methods and reloads the class.
|
343
|
+
In debug mode this will be enabled by default, you can override this setting on the `config` of Initializer.
|
344
|
+
So a good place would be environment.rb.
|
345
|
+
|
346
|
+
2008-1-11 Eloy Duran <e.duran@superalloy.nl>
|
347
|
+
|
348
|
+
* Manifest.txt,
|
349
|
+
lib/rucola/rucola_support/core_ext/ruby/file.rb,
|
350
|
+
lib/rucola/rucola_support/core_ext/ruby/object.rb,
|
351
|
+
lib/rucola/rucola_support/core_ext/ruby/string.rb,
|
352
|
+
test/test_core_ext.rb:
|
353
|
+
|
354
|
+
Added to rucola support:
|
355
|
+
String#constantize, File.constantize(), Object.metaclass, Object.extended_class_methods,
|
356
|
+
Object.own_class_methods, Object.original_class_methods
|
357
|
+
|
358
|
+
2008-1-11 Eloy Duran <e.duran@superalloy.nl>
|
359
|
+
|
360
|
+
* Manifest.txt,
|
361
|
+
lib/autotest/rucola.rb:
|
362
|
+
|
363
|
+
Updated the manifest to include the fsevents lib.
|
364
|
+
Reverted the accidental commit of the rucola autotest file.
|
365
|
+
|
366
|
+
2008-1-11 Eloy Duran <e.duran@superalloy.nl>
|
367
|
+
|
368
|
+
* lib/autotest/rucola.rb,
|
369
|
+
lib/rucola/fsevents.rb,
|
370
|
+
test/test_fsevents.rb,
|
371
|
+
test/test_helper.rb,
|
372
|
+
tmp:
|
373
|
+
|
374
|
+
Added a rubyesque wrapper around FSEvents.
|
375
|
+
|
376
|
+
2008-1-7 Eloy Duran <e.duran@superalloy.nl>
|
377
|
+
|
378
|
+
* Manifest.txt,
|
379
|
+
rucola_generators/simple_model,
|
380
|
+
rucola_generators/simple_model/USAGE,
|
381
|
+
rucola_generators/simple_model/simple_model_generator.rb,
|
382
|
+
rucola_generators/simple_model/templates,
|
383
|
+
rucola_generators/simple_model/templates/simple_model.rb.erb,
|
384
|
+
rucola_generators/simple_model/templates/test_simple_model.rb.erb,
|
385
|
+
test/test_simple_model_generator.rb:
|
386
|
+
|
387
|
+
Added a simple model generator, which is simply a subclass of NSObject.
|
388
|
+
|
389
|
+
2008-1-5 Eloy Duran <e.duran@superalloy.nl>
|
390
|
+
|
391
|
+
* lib/rucola/tasks/xcode.rake:
|
392
|
+
|
393
|
+
Fixed a bug that occurs when trying to get the build dir from the xcode prefs
|
394
|
+
when XCode has never been run and so no prefs exist at all.
|
395
|
+
|
396
|
+
2008-1-5 Eloy Duran <e.duran@superalloy.nl>
|
397
|
+
|
398
|
+
* TODO,
|
399
|
+
lib/rucola/tasks/xcode.rake:
|
400
|
+
|
401
|
+
Added a rake xcode:frameworks:update task, which goes through
|
402
|
+
vendor/frameworks and adds any frameworks that aren't in the project
|
403
|
+
yet to it and also adds it to a copy build phase in one go.
|
404
|
+
|
405
|
+
2008-1-5 Eloy Duran <e.duran@superalloy.nl>
|
406
|
+
|
407
|
+
* lib/rucola/xcode.rb,
|
408
|
+
test/test_xcode.rb:
|
409
|
+
|
410
|
+
Fixed some bugs with adding a framework to a xcode project.
|
411
|
+
|
412
|
+
2008-1-5 Eloy Duran <e.duran@superalloy.nl>
|
413
|
+
|
414
|
+
* Manifest.txt,
|
415
|
+
lib/rucola/initializer.rb,
|
416
|
+
lib/rucola/ruby_debug.rb:
|
417
|
+
|
418
|
+
Added support for ruby-debug.
|
419
|
+
If a call is made to Kernel.debugger and the RUBYCOCOA_ENV is `debug`,
|
420
|
+
then the ruby-debug library will be required and ran.
|
421
|
+
So to be able to use this you only need to install the ruby-debug gem.
|
422
|
+
|
423
|
+
2008-1-4 Eloy Duran <e.duran@superalloy.nl>
|
424
|
+
|
425
|
+
* lib/rucola/xcode.rb,
|
426
|
+
test/test_xcode.rb:
|
427
|
+
|
428
|
+
Added to Xcode:
|
429
|
+
#generate_object_id which generates a UUID for a new object.
|
430
|
+
#add_framework which adds a framework to the xcode project.
|
431
|
+
#frameworks which lists all the framework objects in the xcode project.
|
432
|
+
|
433
|
+
2008-1-4 Eloy Duran <e.duran@superalloy.nl>
|
434
|
+
|
435
|
+
* lib/rucola/initializer.rb:
|
436
|
+
|
437
|
+
Require any ruby files in lib/.
|
438
|
+
|
439
|
+
2008-1-4 Eloy Duran <e.duran@superalloy.nl>
|
440
|
+
|
441
|
+
* lib/rucola/rucola_support/core_ext/objc/nsimage.rb,
|
442
|
+
test/test_helper.rb,
|
443
|
+
test/test_objc_core_ext.rb:
|
444
|
+
|
445
|
+
NSImage#imageNamed will also look in app/assets for a given image name.
|
446
|
+
|
447
|
+
2008-1-4 Eloy Duran <e.duran@superalloy.nl>
|
448
|
+
|
449
|
+
* app_generators/rucola/rucola_generator.rb,
|
450
|
+
test/test_rucola_generator.rb:
|
451
|
+
|
452
|
+
Added the test/lib dir to the app generator.
|
453
|
+
|
454
|
+
2008-1-4 Eloy Duran <e.duran@superalloy.nl>
|
455
|
+
|
456
|
+
* app_generators/rucola/rucola_generator.rb,
|
457
|
+
test/test_rucola_generator.rb:
|
458
|
+
|
459
|
+
Added the app/assets/ and lib/ dirs to the app generator.
|
460
|
+
|
461
|
+
2008-1-4 Eloy Duran <e.duran@superalloy.nl>
|
462
|
+
|
463
|
+
* History.txt,
|
464
|
+
lib/rucola/version.rb,
|
465
|
+
website/index.html:
|
466
|
+
|
467
|
+
Changed files after 0.0.3 release
|
468
|
+
|
1
469
|
2007-11-29 Eloy Duran <e.duran@superalloy.nl>
|
2
470
|
|
3
471
|
* lib/rucola/info_plist.rb,
|