No commit activity in last 3 years
No release in over 3 years
Exposes Objective-C runtime in RubyMotion
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

Superseded by motion.h

This gem has been replaced by motion.h, which can be used to expose any iOS system library, not just the Objective-C runtime.

motion-objc-runtime

motion-objc-runtime exposes the Objective-C runtime API. This allows RubyMotion to access building blocks necessary to perform advanced metaprogramming capabilities in RubyMotion.

The Objective-C runtime is exposed the same way RubyMotion exposes C functions from UIKit and other iOS frameworks, via BrideSupport files created by the gen_bridge_metadata command.

Installation

Add this line to your RubyMotion app's Rakefile:

require 'motion-objc-runtime'

Usage

See Apple's Objective-C Runtime Reference

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request