swipe_title 0.0.2 → 0.0.3
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.
- checksums.yaml +7 -0
- data/lib/swipe_title/title_page.rb +1 -1
- data/lib/swipe_title/version.rb +1 -1
- metadata +9 -19
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 4ba011b63e8f0ce2e3d6031b7f49007357c3ad67
|
|
4
|
+
data.tar.gz: a1fc893e429976ea4091e63151c2162114dd2fb2
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 85f535445d88f2470f06e6ae196a0f7316a4e5e38ec9f066facf82ee2254806161d59eee9d30cc3f5307560580ccded73f87789fd9d6a5422d99cd76fbdf8b29
|
|
7
|
+
data.tar.gz: d30e3b7e3654b37473f8447cd2a470b4f900a64dcca2fd1ff6f1907ed43bf85c55d86e3ea29bf969652d9007620806fb679f5320d1c22cbe17b0ba6aa9dd8cd0
|
|
@@ -5,7 +5,7 @@ class TitlePage < UICollectionViewCell
|
|
|
5
5
|
def initWithFrame frame
|
|
6
6
|
super
|
|
7
7
|
|
|
8
|
-
@titleLabel = UILabel.
|
|
8
|
+
@titleLabel = UILabel.alloc.initWithFrame(CGRectZero).tap do |l|
|
|
9
9
|
l.backgroundColor = UIColor.clearColor
|
|
10
10
|
l.textAlignment = NSTextAlignmentCenter
|
|
11
11
|
end
|
data/lib/swipe_title/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,30 +1,27 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: swipe_title
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.0.3
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- DmitryTsepelev
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
11
|
+
date: 2013-04-26 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: rake
|
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
none: false
|
|
18
16
|
requirements:
|
|
19
|
-
- -
|
|
17
|
+
- - '>='
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
21
19
|
version: '0'
|
|
22
20
|
type: :development
|
|
23
21
|
prerelease: false
|
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
23
|
requirements:
|
|
27
|
-
- -
|
|
24
|
+
- - '>='
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
29
26
|
version: '0'
|
|
30
27
|
description: Swipe title view for RubyMotion projects
|
|
@@ -53,33 +50,26 @@ files:
|
|
|
53
50
|
homepage: ''
|
|
54
51
|
licenses:
|
|
55
52
|
- MIT
|
|
53
|
+
metadata: {}
|
|
56
54
|
post_install_message:
|
|
57
55
|
rdoc_options: []
|
|
58
56
|
require_paths:
|
|
59
57
|
- lib
|
|
60
58
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
61
|
-
none: false
|
|
62
59
|
requirements:
|
|
63
|
-
- -
|
|
60
|
+
- - '>='
|
|
64
61
|
- !ruby/object:Gem::Version
|
|
65
62
|
version: '0'
|
|
66
|
-
segments:
|
|
67
|
-
- 0
|
|
68
|
-
hash: 4583783504724744134
|
|
69
63
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
|
-
none: false
|
|
71
64
|
requirements:
|
|
72
|
-
- -
|
|
65
|
+
- - '>='
|
|
73
66
|
- !ruby/object:Gem::Version
|
|
74
67
|
version: '0'
|
|
75
|
-
segments:
|
|
76
|
-
- 0
|
|
77
|
-
hash: 4583783504724744134
|
|
78
68
|
requirements: []
|
|
79
69
|
rubyforge_project:
|
|
80
|
-
rubygems_version:
|
|
70
|
+
rubygems_version: 2.0.0
|
|
81
71
|
signing_key:
|
|
82
|
-
specification_version:
|
|
72
|
+
specification_version: 4
|
|
83
73
|
summary: View which contains array of scrollable titles and page control
|
|
84
74
|
test_files:
|
|
85
75
|
- spec/spec_helper.rb
|