ProMotion 2.8.0 → 2.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.md +0 -4
- data/lib/ProMotion/table/data/table_data.rb +5 -0
- data/lib/ProMotion/table/table.rb +4 -0
- data/lib/ProMotion/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: efc0e4eeac8a116a45fe9d8514f90f9333a5319b61f599eedeec5cdeade33ca1
|
4
|
+
data.tar.gz: 741723fa29c6041dbeb3b3884efae27da21c25eb2c37f2510e047fdbd9e5d38f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b321c8df19b1470e78598a8f062686c361d30733f204a0f2dfdefe23c38f89dccfc2965e07addb038bf2daee1d0983052b162dee41e5711d78dafad7e613dd46
|
7
|
+
data.tar.gz: 3a851b9c2e0719a919b23d4d25fc0238409da9e7d370a1edef4203aa46dd46a1c371503d4ee6d8efdf17dcb6a48bd9c78ef0ce5e15b6758ee4968ed684d0f545
|
data/README.md
CHANGED
@@ -6,10 +6,6 @@
|
|
6
6
|
|
7
7
|
ProMotion was created by [Infinite Red](http://infinite.red), a web and mobile development company based in Portland, OR and San Francisco, CA. While you're welcome to use ProMotion, please note that we rely on the community to maintain it. We are happy to merge pull requests and release new versions but are no longer driving primary development.
|
8
8
|
|
9
|
-
<img alt="apple presentation" src="https://cloud.githubusercontent.com/assets/1479215/26798290/c156fdb4-49e4-11e7-92b7-be24647a3474.png" width="350px" />
|
10
|
-
|
11
|
-
_Apple presenting on ProMotion, WWDC 2017_
|
12
|
-
|
13
9
|
## iPhone Apps, Ruby-style
|
14
10
|
|
15
11
|
ProMotion is a RubyMotion gem that makes iOS development more like Ruby and less like Objective-C.
|
@@ -59,8 +59,13 @@ module ProMotion
|
|
59
59
|
@filtered == true
|
60
60
|
end
|
61
61
|
|
62
|
+
def search_string
|
63
|
+
@search_string ||= nil
|
64
|
+
end
|
65
|
+
|
62
66
|
def search(search_string)
|
63
67
|
@filtered = true
|
68
|
+
@search_string = search_string
|
64
69
|
self.filtered_data = []
|
65
70
|
|
66
71
|
self.data.compact.each do |section|
|
@@ -95,6 +95,10 @@ module ProMotion
|
|
95
95
|
self.promotion_table_data.filtered?
|
96
96
|
end
|
97
97
|
|
98
|
+
def search_string
|
99
|
+
self.promotion_table_data.search_string
|
100
|
+
end
|
101
|
+
|
98
102
|
def update_table_view_data(data, args = {})
|
99
103
|
self.promotion_table_data.data = data
|
100
104
|
if args[:index_paths]
|
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: 2.8.
|
4
|
+
version: 2.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamon Holmgren
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2018-
|
13
|
+
date: 2018-10-24 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: methadone
|
@@ -214,7 +214,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
214
214
|
version: '0'
|
215
215
|
requirements: []
|
216
216
|
rubyforge_project:
|
217
|
-
rubygems_version: 2.6
|
217
|
+
rubygems_version: 2.7.6
|
218
218
|
signing_key:
|
219
219
|
specification_version: 4
|
220
220
|
summary: ProMotion is a fast way to get started building RubyMotion apps. Instead
|