From: <ki...@us...> - 2014-06-19 21:50:43
|
Revision: 2573 http://sourceforge.net/p/rubycocoa/svn/2573 Author: kimuraw Date: 2014-06-19 21:50:30 +0000 (Thu, 19 Jun 2014) Log Message: ----------- Allow running tests with `minitest`, standard library of ruby-2.0 test-unit minitest --------------------------------------------- assert_true(cond) assert_equal(true, cond) assert_false(cond) assert_equal(false, cond) Modified Paths: -------------- trunk/src/ChangeLog trunk/src/tests/tc_nsarray.rb trunk/src/tests/tc_objcid.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-06-21 06:54:38
|
Revision: 2574 http://sourceforge.net/p/rubycocoa/svn/2574 Author: kimuraw Date: 2014-06-21 06:54:26 +0000 (Sat, 21 Jun 2014) Log Message: ----------- Improve launch process of RubyCocoa applications on ruby-2.x - use ruby_run_node(node) on ruby-2.x. - NSString#fileSystemRepresentation returns regular string. on ruby-2.x, a return value type (char *) from Objective-C becomes Ruby String with dummy encoding "RUBYCOCOA_UNKNOWN". NSString#fileSystemRepresentation is used in most of rb_main.rb. If the method returns regular string, we need not to modify rb_main.rb of out RubyCocoa apps. Modified Paths: -------------- trunk/src/ChangeLog trunk/src/framework/src/objc/RBRuntime.m trunk/src/framework/src/ruby/osx/objc/oc_attachments.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-06-21 06:54:52
|
Revision: 2575 http://sourceforge.net/p/rubycocoa/svn/2575 Author: kimuraw Date: 2014-06-21 06:54:44 +0000 (Sat, 21 Jun 2014) Log Message: ----------- Add st_table and functions for encoding conversion st_table - rb2ocEncConv: ruby encoding index -> CFStringEncoding - oc2rbEncConv: CFStringEncoding -> ruby encoding index function - lookup conversion table - strenc_rb2oc() - strenc_oc2rb() function - register conversion table - register_strenc_rb2oc() - register_strenc_oc2rb() - register_strenc_pair() Modified Paths: -------------- trunk/src/ChangeLog trunk/src/framework/src/objc/ocdata_conv.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-06-22 11:09:59
|
Revision: 2576 http://sourceforge.net/p/rubycocoa/svn/2576 Author: kimuraw Date: 2014-06-22 11:09:50 +0000 (Sun, 22 Jun 2014) Log Message: ----------- Refactor message passing from ruby to objective-c - OSX::NSString#method_missing and resnpond_to?: use super - OSX::OCObjWrapper#ocm_responds?: rename to #ocm_respond_to? Modified Paths: -------------- trunk/src/ChangeLog trunk/src/framework/src/objc/mdl_objwrapper.m trunk/src/framework/src/ruby/osx/objc/oc_attachments.rb trunk/src/framework/src/ruby/osx/objc/oc_import.rb trunk/src/framework/src/ruby/osx/objc/oc_wrapper.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-06-24 13:00:25
|
Revision: 2577 http://sourceforge.net/p/rubycocoa/svn/2577 Author: kimuraw Date: 2014-06-24 13:00:07 +0000 (Tue, 24 Jun 2014) Log Message: ----------- Remove unused scripts Modified Paths: -------------- trunk/src/ChangeLog Removed Paths: ------------- trunk/src/tool/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-06-24 22:25:10
|
Revision: 2578 http://sourceforge.net/p/rubycocoa/svn/2578 Author: kimuraw Date: 2014-06-24 22:25:04 +0000 (Tue, 24 Jun 2014) Log Message: ----------- Fix missing restore OSX.relaxed_syntax when test_message_syntaxes() fails Modified Paths: -------------- trunk/src/ChangeLog trunk/src/tests/tc_wrapper.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-06-24 22:25:18
|
Revision: 2579 http://sourceforge.net/p/rubycocoa/svn/2579 Author: kimuraw Date: 2014-06-24 22:25:16 +0000 (Tue, 24 Jun 2014) Log Message: ----------- Raise NoMethodError when Objective-C method is not found change exception class to NoMethodError from OSX::OCMessageSendException. obj = OSX::NSObject.alloc.init obj.notImplementedMethod() # => NoMethodError Modified Paths: -------------- trunk/src/ChangeLog trunk/src/framework/src/objc/mdl_objwrapper.m trunk/src/tests/tc_objcid.rb trunk/src/tests/tc_subclass.rb trunk/src/tests/tc_wrapper.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-06-26 22:16:36
|
Revision: 2580 http://sourceforge.net/p/rubycocoa/svn/2580 Author: kimuraw Date: 2014-06-26 22:16:28 +0000 (Thu, 26 Jun 2014) Log Message: ----------- Convert Objective-C char* value into ASCII-8BIT string on Ruby Modified Paths: -------------- trunk/src/ChangeLog trunk/src/framework/src/objc/cls_objcptr.m trunk/src/framework/src/objc/libffi.m trunk/src/framework/src/objc/ocdata_conv.h trunk/src/framework/src/objc/ocdata_conv.m trunk/src/framework/src/ruby/osx/objc/ruby_addition.rb trunk/src/tests/tc_attachments.rb trunk/src/tests/tc_nsdata.rb trunk/src/tests/tc_objcptr.rb trunk/src/tests/tc_types.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-06-30 13:53:30
|
Revision: 2581 http://sourceforge.net/p/rubycocoa/svn/2581 Author: kimuraw Date: 2014-06-30 13:53:22 +0000 (Mon, 30 Jun 2014) Log Message: ----------- Fix "$0 not initialized" on ruby-2.x setting new value to $0 is allowed when the script running on ruby(1). Modified Paths: -------------- trunk/src/ChangeLog trunk/src/framework/tool/standaloneify.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-07-03 14:08:12
|
Revision: 2582 http://sourceforge.net/p/rubycocoa/svn/2582 Author: kimuraw Date: 2014-07-03 14:07:59 +0000 (Thu, 03 Jul 2014) Log Message: ----------- Fix standaloneify.rb crashes on ruby-2.x Modified Paths: -------------- trunk/src/ChangeLog trunk/src/framework/src/objc/RBRuntime.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-07-06 13:28:30
|
Revision: 2583 http://sourceforge.net/p/rubycocoa/svn/2583 Author: kimuraw Date: 2014-07-06 13:28:21 +0000 (Sun, 06 Jul 2014) Log Message: ----------- Fix build failure of sample/Thread on OS X 10.9 Modified Paths: -------------- trunk/src/ChangeLog trunk/src/sample/Thread/Makefile This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-07-10 13:33:49
|
Revision: 2584 http://sourceforge.net/p/rubycocoa/svn/2584 Author: kimuraw Date: 2014-07-10 13:33:41 +0000 (Thu, 10 Jul 2014) Log Message: ----------- Fix sample apps using ruby Thread do not work with ruby-2.x add missing `Thread.pass`. Modified Paths: -------------- trunk/src/ChangeLog trunk/src/sample/Pong/AppCtrl.rb trunk/src/sample/SimpleApp/AppController.rb trunk/src/sample/Thread/AppController.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-07-12 13:19:07
|
Revision: 2586 http://sourceforge.net/p/rubycocoa/svn/2586 Author: kimuraw Date: 2014-07-12 13:19:05 +0000 (Sat, 12 Jul 2014) Log Message: ----------- remove import obsoleted header file "ruby/backward/rubysig.h" Modified Paths: -------------- trunk/src/ChangeLog trunk/src/framework/src/objc/RBThreadSwitcher.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-07-13 14:48:13
|
Revision: 2587 http://sourceforge.net/p/rubycocoa/svn/2587 Author: kimuraw Date: 2014-07-13 14:48:06 +0000 (Sun, 13 Jul 2014) Log Message: ----------- Allow to specify package name in config files change package name for 10.9 Mervericks: RubyCocoa-1.1.0-OSX10.9 -> RubyCocoa-1.1.0-OSX10.9-Ruby1.8 Modified Paths: -------------- trunk/src/ChangeLog trunk/src/package/config/10.9 trunk/src/package/post-package.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-07-14 14:28:48
|
Revision: 2588 http://sourceforge.net/p/rubycocoa/svn/2588 Author: kimuraw Date: 2014-07-14 14:28:39 +0000 (Mon, 14 Jul 2014) Log Message: ----------- Add a packaging option "--config-file" $ ruby install.rb package --config-file=[filename] [filename] name of config file exists under package/config/. Modified Paths: -------------- trunk/src/ChangeLog trunk/src/install.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-07-14 14:28:59
|
Revision: 2589 http://sourceforge.net/p/rubycocoa/svn/2589 Author: kimuraw Date: 2014-07-14 14:28:52 +0000 (Mon, 14 Jul 2014) Log Message: ----------- Add a config file for packaging with 10.9 built-in ruby-2.0 Modified Paths: -------------- trunk/src/ChangeLog Added Paths: ----------- trunk/src/package/config/10.9-ruby2.0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-07-15 13:55:53
|
Revision: 2590 http://sourceforge.net/p/rubycocoa/svn/2590 Author: kimuraw Date: 2014-07-15 13:55:43 +0000 (Tue, 15 Jul 2014) Log Message: ----------- Convert NSString#fileSystemRepresentation encoding to filesystem encoding (UTF-8) from UTF-8-Mac on ruby-2.x Modified Paths: -------------- trunk/src/ChangeLog trunk/src/framework/src/ruby/osx/objc/oc_attachments.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-07-17 14:48:29
|
Revision: 2591 http://sourceforge.net/p/rubycocoa/svn/2591 Author: kimuraw Date: 2014-07-17 14:48:27 +0000 (Thu, 17 Jul 2014) Log Message: ----------- Fix build failure of sample/DotView on OS X 10.9 Modified Paths: -------------- trunk/src/ChangeLog trunk/src/sample/DotView/Makefile This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-07-17 15:10:49
|
Revision: 2592 http://sourceforge.net/p/rubycocoa/svn/2592 Author: kimuraw Date: 2014-07-17 15:10:46 +0000 (Thu, 17 Jul 2014) Log Message: ----------- Fix sample sample/Hakoiri-Musume on ruby-2.x - add missing framework linking. - add magic-comment for source code encoding. - use $KCODE only ruby-1.8. Modified Paths: -------------- trunk/src/ChangeLog trunk/src/sample/Hakoiri-Musume/Makefile trunk/src/sample/Hakoiri-Musume/hako.rb trunk/src/sample/Hakoiri-Musume/rb_main.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-07-18 14:41:31
|
Revision: 2593 http://sourceforge.net/p/rubycocoa/svn/2593 Author: kimuraw Date: 2014-07-18 14:41:23 +0000 (Fri, 18 Jul 2014) Log Message: ----------- Add a dict RUBYCOCOA_BUILD_CONFIG into Info.plist the dict shows build environment of RubyCocoa.framework. + RUBYCOCOA_BUILD_CONFIG + MACOSX_DEPLOYMENT_TARGET + RUBY_VERSION Modified Paths: -------------- trunk/src/ChangeLog trunk/src/framework/Info.plist trunk/src/framework/src/objc/Version.h.in trunk/src/pre-config.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-07-19 07:38:40
|
Revision: 2594 http://sourceforge.net/p/rubycocoa/svn/2594 Author: kimuraw Date: 2014-07-19 07:38:29 +0000 (Sat, 19 Jul 2014) Log Message: ----------- Fix build failure of sample/MakefileApp, MakefileApp2 on OS X 10.9 Modified Paths: -------------- trunk/src/ChangeLog trunk/src/sample/MakefileApp/Makefile trunk/src/sample/MakefileApp/main.m trunk/src/sample/MakefileApp2/Makefile trunk/src/sample/MakefileApp2/main.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-07-19 07:38:53
|
Revision: 2595 http://sourceforge.net/p/rubycocoa/svn/2595 Author: kimuraw Date: 2014-07-19 07:38:45 +0000 (Sat, 19 Jul 2014) Log Message: ----------- Fix build failure of sample/MultiNib on OS X 10.9 Modified Paths: -------------- trunk/src/ChangeLog trunk/src/sample/MultiNib/Makefile trunk/src/sample/MultiNib/main.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-07-19 07:39:04
|
Revision: 2596 http://sourceforge.net/p/rubycocoa/svn/2596 Author: kimuraw Date: 2014-07-19 07:38:57 +0000 (Sat, 19 Jul 2014) Log Message: ----------- Fix MyViewer.app do not launch Modified Paths: -------------- trunk/src/ChangeLog trunk/src/sample/MyViewer/Makefile trunk/src/sample/MyViewer/main.m This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-07-19 07:39:20
|
Revision: 2597 http://sourceforge.net/p/rubycocoa/svn/2597 Author: kimuraw Date: 2014-07-19 07:39:13 +0000 (Sat, 19 Jul 2014) Log Message: ----------- Fix syntax error and IRB initialization on ruby-2.x - fix syntax error on ruby-2.x - fix missing initialization with IRB.init_config() Modified Paths: -------------- trunk/src/ChangeLog trunk/src/sample/RubyConsole/console.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ki...@us...> - 2014-07-19 07:39:32
|
Revision: 2598 http://sourceforge.net/p/rubycocoa/svn/2598 Author: kimuraw Date: 2014-07-19 07:39:25 +0000 (Sat, 19 Jul 2014) Log Message: ----------- Fix syntax error of sample/RubyRocks on ruby-2.x Modified Paths: -------------- trunk/src/ChangeLog trunk/src/sample/RubyRocks/RubyRocks.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |