teacup 1.3.3 → 1.3.4
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/teacup/version.rb +1 -1
- data/lib/teacup/z_core_extensions/z_handlers.rb +0 -1
- data/samples/Hai/Gemfile +1 -1
- data/samples/Hai/Gemfile.lock +2 -2
- data/samples/OnePage/Gemfile.lock +21 -0
- metadata +3 -2
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -335,7 +335,7 @@ Teacup.handler UIView, :left { |view, x|
|
|
335
335
|
How about setting the title of a `UIButton`?
|
336
336
|
|
337
337
|
```ruby
|
338
|
-
Teacup.handler UIButton, :title { |
|
338
|
+
Teacup.handler UIButton, :title { |target, title|
|
339
339
|
target.setTitle(title, forState: UIControlStateNormal)
|
340
340
|
}
|
341
341
|
```
|
data/lib/teacup/version.rb
CHANGED
data/samples/Hai/Gemfile
CHANGED
data/samples/Hai/Gemfile.lock
CHANGED
@@ -0,0 +1,21 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
geomotion (0.12.1)
|
5
|
+
rake (10.0.4)
|
6
|
+
sugarcube (0.20.18)
|
7
|
+
sweettea (0.5.6)
|
8
|
+
rake
|
9
|
+
sugarcube
|
10
|
+
teacup
|
11
|
+
teacup (1.3.3)
|
12
|
+
|
13
|
+
PLATFORMS
|
14
|
+
ruby
|
15
|
+
|
16
|
+
DEPENDENCIES
|
17
|
+
geomotion
|
18
|
+
rake
|
19
|
+
sugarcube
|
20
|
+
sweettea
|
21
|
+
teacup
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: teacup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-05-06 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: ! 'Teacup is a community-driven DSL for making CSS-like styling, and
|
15
15
|
layouts for
|
@@ -85,6 +85,7 @@ files:
|
|
85
85
|
- samples/Hai/app/styles/iphone.rb
|
86
86
|
- samples/Hai/spec/main_spec.rb
|
87
87
|
- samples/OnePage/Gemfile
|
88
|
+
- samples/OnePage/Gemfile.lock
|
88
89
|
- samples/OnePage/Rakefile
|
89
90
|
- samples/OnePage/app/app_delegate.rb
|
90
91
|
- samples/OnePage/resources/Default-568h@2x.png
|