ProMotion 0.6.3 → 0.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile.lock +1 -1
- data/README.md +2 -2
- data/lib/ProMotion/screens/_screen_module.rb +1 -1
- data/lib/ProMotion/version.rb +1 -1
- metadata +2 -2
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -411,7 +411,7 @@ class SettingsScreen < ProMotion::GroupedTableScreen
|
|
|
411
411
|
title "Settings"
|
|
412
412
|
|
|
413
413
|
def on_load
|
|
414
|
-
|
|
414
|
+
set_nav_bar_right_button("Save", action: :save)
|
|
415
415
|
set_tab_bar_item(title: "Settings", icon: "settings.png")
|
|
416
416
|
end
|
|
417
417
|
|
|
@@ -749,7 +749,7 @@ end
|
|
|
749
749
|
updated_time_format: "%l:%M %p"
|
|
750
750
|
)</code></pre></td>
|
|
751
751
|
<td>Class method to make the current table refreshable.
|
|
752
|
-
|
|
752
|
+
<p>All parameters are optional. If you do not specify a a callback, it will assume you've implemented an <code>on_refresh</code> method in your tableview.</p>
|
|
753
753
|
<pre><code>def on_refresh
|
|
754
754
|
# Code to start the refresh
|
|
755
755
|
end</code></pre>
|
|
@@ -6,7 +6,7 @@ module ProMotion
|
|
|
6
6
|
include ProMotion::ScreenTabs
|
|
7
7
|
include ProMotion::SplitScreen if NSBundle.mainBundle.infoDictionary["UIDeviceFamily"].include?("2")
|
|
8
8
|
|
|
9
|
-
attr_accessor :parent_screen, :first_screen, :tab_bar_item, :tab_bar, :modal, :split_screen
|
|
9
|
+
attr_accessor :parent_screen, :first_screen, :tab_bar_item, :tab_bar, :modal, :split_screen
|
|
10
10
|
|
|
11
11
|
def on_create(args = {})
|
|
12
12
|
unless self.is_a?(UIViewController)
|
data/lib/ProMotion/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ProMotion
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2013-05-
|
|
14
|
+
date: 2013-05-27 00:00:00.000000000 Z
|
|
15
15
|
dependencies: []
|
|
16
16
|
description: ProMotion is a new way to easily build RubyMotion iOS apps.
|
|
17
17
|
email:
|