Motion Luc

Generate the Core Data model from your RubyMotion code. Never open XCode again!

Installation

The installation is simple. Just add this line to you Gemfile:

gem 'motion_luc'

Execute:

$ bundle install

And BOOM, you're on your way!

What's included?

Try

You can use the Ruby on Rails like try method to try a method and if it doesn't exist no exception will be raised but instead nil will be returned.

object_variable.try :testing

Localize

Localize as fast as possible with this function that you can easily use everywhere. No more description, just pass the key and let iOS do the rest.

localize "key.in.strings.file"

Defaults

Just by defining the DEFAULT_KEYS, you get easier access to the NSUserDefaults. Add there to your globals.rb:

DEFAULT_KEYS = %w(username password)

And next you can call these methods below:

Defaults.instance.username
Defaults.instance.username = "me"
Defaults.instance.username?

Defaults.instance.password
Defaults.instance.password = "je"
Defaults.instance.password?

Fit

You can automatically resize a label until it fits the text. Just call fit on the label instance.

label_variable.fit

Contributing

It would be awesome if you contribute!

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

License

Copyright (c) 2013 Jelle Vandebeeck

MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.