Commit Graph

340 Commits

Author SHA1 Message Date
Clay Allsopp
c9bd8459df fix characters in UpdateCommand#run
see https://gist.github.com/clayallsopp/6360189
2013-08-27 16:06:49 -07:00
Watson
ac2adc65a1 2.7 2013-08-27 00:28:34 +09:00
Laurent Sansonetti
93f2ac0c59 add 'motion device:console' command 2013-08-27 00:27:24 +09:00
Laurent Sansonetti
b2c8318954 better indent 2013-08-27 00:27:18 +09:00
Laurent Sansonetti
528667b09f better message 2013-08-27 00:27:12 +09:00
Watson
ee06e07cde fix a bug where ARR_CYCLES_DISABLE are disabled with distributed app
In order to enable ARR_CYCLES_DISABLE, we need to set ARR_CYCLES_DISABLE as environment variable when launch the app.
So, embedded ARR_CYCLES_DISABLE variable into app

http://hipbyte.myjetbrains.com/youtrack/issue/RM-245
2013-08-25 22:05:07 +09:00
Watson
790107a8d4 add a copyright in lldb.py 2013-08-25 22:04:49 +09:00
Laurent Sansonetti
04e5c8f92e app.vendor_projects is defined in config.rb, not xcode_config.rb 2013-08-25 22:04:44 +09:00
Laurent Sansonetti
0739b4852b build the bs flags only once 2013-08-25 22:04:38 +09:00
Watson
94bebac686 add Gemfile into gem template 2013-08-20 07:38:10 +09:00
Watson
c96321cd85 add *.gem into .gitignore in gem template 2013-08-20 07:38:00 +09:00
Watson
df5ff5ed1c add 'rake' gem into Gemfile because `bundle exec rake' cause a Gem::LoadError
If run `bundle exec rake' without `rake' gem, the following error is occurred.
% bundle exec rake
/Users/watson/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/bundler-1.3.5/lib/bundler/rubygems_integration.rb:214:in `block in replace_gem': rake is not part of the bundle. Add it to Gemfile. (Gem::LoadError)
	from /Users/watson/.rbenv/versions/2.0.0-p247/bin/rake:22:in `<main>'
2013-08-20 07:37:53 +09:00
Watson
3b95fa1dce add convenient rake task with "gem" namespace which is contained in "bundler/gem_tasks" 2013-08-20 07:37:47 +09:00
Laurent Sansonetti
fbde6cf83f integrate Bundler 2013-08-20 07:37:30 +09:00
Laurent Sansonetti
fa5169f795 add support for spritekit atlas files 2013-08-20 07:37:17 +09:00
Laurent Sansonetti
b6c52e3b49 OSX: add app.codesign_for_development Rakefile variable to enable codesign during development (normally only done in release builds) 2013-08-20 07:37:05 +09:00
Laurent Sansonetti
3a4fbb6cb7 revert 9e8b17013c since the problem seems to have disappeared in master 2013-08-20 07:36:29 +09:00
Laurent Sansonetti
c285b33547 osx: only strip x86_64 symbols 2013-08-20 07:36:12 +09:00
Laurent Sansonetti
32945497ca Merge pull request #118 from HipByte/multiple-rm-versions
allez zou
2013-08-16 13:43:00 -07:00
Joffrey Jaffeux
5704a6b9dd Check if /Library/RubyMotion.old already exists 2013-08-16 22:37:34 +02:00
Joffrey Jaffeux
845741278d fix error in wanted_software_version check 2013-08-09 15:35:17 +02:00
Joffrey Jaffeux
31f33b9fcc add support for multiple rubymotion versions on one machine 2013-08-09 14:17:04 +02:00
Watson
4f97c37a2f add builtin command for lldb 2013-08-08 08:17:45 +09:00
Laurent Sansonetti
7ab5b54439 app.short_version defaults to app.version 2013-08-08 08:16:39 +09:00
Laurent Sansonetti
803a8a0bf6 Merge pull request #115 from markrickert/add-app-store-category
Support app_store_category config var for OSX apps.
2013-08-07 15:52:38 -07:00
Laurent Sansonetti
0cdfe39e99 Merge pull request #107 from dlo/master
Add command line shortcut to view changelog
2013-08-07 15:51:58 -07:00
Dan Loewenherz
330a46d216 update copy for post-update for motion changelog command 2013-08-07 14:30:12 -04:00
Dan Loewenherz
8a55188b49 use system pager to display changelog messages 2013-08-07 14:29:16 -04:00
Watson
87b8ebe37c fix a mistake in 7fffe1ae44 2013-08-07 23:52:34 +09:00
Watson
7fffe1ae44 fix a bug in `rake spec' which always return exit(0) status 2013-08-07 23:33:43 +09:00
Laurent Sansonetti
a6cd89ebc4 refactor crash message + fix wording 2013-08-07 23:33:37 +09:00
Laurent Sansonetti
1a5748db13 fix escaping + print message if there are no crash logs 2013-08-07 23:33:27 +09:00
Mark Rickert
2a864fbeda Fix typo - LSApplicationCategoryType 2013-08-07 08:53:37 -04:00
Mark Rickert
9ba6fb41db Updated code based on Laurent's suggestion. 2013-08-07 08:52:19 -04:00
Mark Rickert
32c1125262 Added a default value for LSApplicationCategoryType (utilities). Extracted hash to its own method. 2013-08-06 17:53:39 -04:00
Mark Rickert
aa88e8eea5 Rename @app_store_category to just @category 2013-08-05 14:42:41 -04:00
Colin T.A. Gray
4069e2a2b1 Merge pull request #116 from chrisradford/master
Add new status bar style
2013-08-05 06:55:01 -07:00
Chris Radford
f820304c0d Update to add new status bar style
Added UIStatusBarStyleLightContent as an option for status_bar_style, a new option added in iOS7.
2013-08-05 12:47:36 +01:00
Mark Rickert
f269e523a7 Support app_store_category config var for OSX apps.
Allows you to set app_store category configuration value instead of doing this:

app.info_plist['LSApplicationCategoryType'] = 'public.app-category.developer-tools'

This allows you to specify:

app.app_store_category = 'developer-tools'
 - or -
app.app_store_category = 'public.app-category.developer-tools'
2013-08-04 12:26:01 -07:00
Watson
1a64e87371 2.6 2013-07-31 00:00:05 +09:00
Laurent Sansonetti
31df7f7653 support pure NSExceptions 2013-07-30 23:59:04 +09:00
Watson
b149973eba fix a bug in debugger where debugging process will be terminated if press CTRL + C while app is running
rake task receives the signal and it is aborted.
And, GDB process remains as zombie process.

So, rake task ignores the SIGINT if debugger is running
2013-07-30 23:58:57 +09:00
Watson
ec70ec8c28 improve the build system in order to compile spec files with parallel 2013-07-24 23:07:59 +09:00
Watson
a2a983febe Merge pull request #112 from clayallsopp/fix_shell_escape
Fix shell escaping for file names
2013-07-24 07:02:22 -07:00
Clay Allsopp
fed7fde5dd Fix shell escaping for file names 2013-07-23 13:20:40 -07:00
Watson
054b389241 2.5 2013-07-23 23:58:56 +09:00
Laurent Sansonetti
2dbd8e9f09 fix wording + style 2013-07-23 15:35:15 +09:00
Laurent Sansonetti
7021ffc3a4 fix wording 2013-07-23 15:35:10 +09:00
Watson
6e83c0d49d show the message that crash log might have been created 2013-07-23 15:35:02 +09:00
Watson
02582c48b7 add `rake crashlog' task to show a last crash log
http://hipbyte.myjetbrains.com/youtrack/issue/RM-208
2013-07-23 15:34:24 +09:00