ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Obj​C2​Ruby​Motion

by kyamaguchi ALL

Objective-C to RubyMotion Code Converter for Sublime Text

Details

  • 2013.05.26.15.03.47
  • github.​com
  • github.​com
  • 11 years ago
  • 2 hours ago
  • 11 years ago

Installs

  • Total 985
  • Win 163
  • Mac 760
  • Linux 62
Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

ObjC2RubyMotion Converter for Sublime Text 2/3

Build Status

A command plugin that enables to convert Objective-C code to Ruby Motion.

Screenshot:

screenshot

Using iShowU, KeyCastr, GIFBrewery

How It Works

Code in the line of the cursor or selection are converted:

// original
_window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.rootViewController = self.myNavController;
[self.window makeKeyAndVisible];

// select lines and run "objc_to_ruby_motion"
_window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds)
self.window.rootViewController = self.myNavController
self.window.makeKeyAndVisible

Install

Package Control

Install the ObjC2RubyMotion package from Package Control.

Manual

Clone this repository from your Sublime packages directory:

Macosx

$ cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages
$ git clone https://github.com/kyamaguchi/SublimeObjC2RubyMotion.git ObjC2RubyMotion

Key Binding

By default,

For Conversion

super+ctrl+i objc_to_ruby_motion

Conversions

In internal order

  • Replace NSString @"String" -> "String"
  • Remove inline comments //
  • Convert blocks (may be not perfect)
  • Convert square brackets expression [[Obj alloc] init] -> Obj.alloc.init
  • Remove semicolon ; at the end of line
  • Remove autorelease at the end
  • Remove type declaration for Object Type * before =
  • YES/NO
  • Float 100.0f -> 100
  • CGRectMake CGRectMake(10, 10, 20, 20) -> [[10, 10], [20, 20]]

NOT supported

  • Complex block
  • if else conditions etc.
  • actions action:@selector(tapped:)
  • Method name and args conversion - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  • Others

Note

This converter is not intended to convert perfectly. This is intended to help the conversion of Objective-C code snippets.

Some complex expression may not be converted correctly.

Tests

:smile: Fortunately ObjC2RubyMotion has tests.

Run test from command line

$ cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/ObjC2RubyMotion
$ python tests/all_test.py

OR

:racehorse: Use guard

# Requirement: ruby
$ gem install guard
$ gem install guard-shell
$ guard

Customize

  1. Fork it

  2. Remove original ObjC2RubyMotion and clone yours OR add your repository as another git remote

$ cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages
  $ git clone git@github.com:yourname/SublimeObjC2RubyMotion.git ObjC2RubyMotion
  1. Copy test file and write new test

cp tests/test_basic.py tests/test_custom.py

  1. :snake: Change and Test

Normally, you should change CodeConverter.py and test_*.py.

$ guard is recommended.

Note

Probably most users of this plugin are rubyist, not pythonista.

This converter is mostly composed of regular expression for now.

If we try to improve this to convert more complex expressions, probably we need to replace the converter with the one using parser/tokenizer/scanner.

Fork is welcomed.

Care about unexpected string replacements. They could happen and they will be problems.