README.md in ion_in_motion-0.0.4 vs README.md in ion_in_motion-0.0.5

- old
+ new

@@ -1,21 +1,17 @@ # Ion In Motion -**Update (2/5)** *Good news, everyone!* This gem actually works now! The earlier errors were because I'm a moron and didn't actually *include* my files in the gem when it was build. Chalk it up to my first time publishing a gem? Oops! +This gem is a thin wrapper which makes it easy to use the wonderful IonIcons in a RubyMotion project. ---- +Browse the available IonIcons [here](http://ionicons.com/) -This gem is a thin wrapped which makes it easy to use the wonderful IonIcons in a RubyMotion project. - -You can browse the available IonIcons [here](http://ionicons.com/) - The gem relies on the [IonIcons CocoaPod](https://github.com/sweetmandm/ionicons-iOS). ## Usage -You can use **Ion in Motion** to quickly return a UILabel, UIImage, UIButton or UIFont. +Use **Ion in Motion** to quickly return a UILabel, UIImage, UIButton or UIFont. **UILabel** Use `Ion.label` to create UILabels. The icon name is required, and it takes `size` and `color` as optional parameters. The default is for a 18 pt font and black text label = Ion.label(:your_icon_name) #Returns UILabel @@ -44,15 +40,15 @@ **UIFont** Returns a UIFont instance. I'm not sure what use this is outside of `image` and `label` methods, but you can use it separately too. It takes a `size` parameter, but defaults to 18pt without it. font = Ion.font(size) ####Icon Names -I've shortened the names of the icons used by the IonIcons Cocoapod to make them a little easier to use. Non are prefixed by `ion_`. You can browse the list [here](). +I've shortened the names of the icons used by the IonIcons Cocoapod to make them a little easier to use. None are prefixed by `ion_`. You can browse the list in [lib/icon_codes.md](https://github.com/Brian-Egan/ion_in_motion/blob/master/lib/ion/icon_codes.md). To visually browse IonIcons, check out their [homepage](http://ionicons.com/), to translate those names simply replace dashes (-) with underscores (_) and remove the `ion` prefix. i.e. `ion-chevron-right` would be `chevron_right`. It's simpler and cleaner this way. --- ### Installation -Easy peasy. +Easy-peasy. 1. Add `gem 'ion_in_motion', :git => 'git://github.com/Brian-Egan/ion_in_motion.git'` to your project's Gemfile. 3. Run `bundle install`. 4. Enjoy! \ No newline at end of file