formotion 1.1.3 → 1.1.4

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- ## 1.1.3 - ??
1
+ ## 1.1.4 - October 27, 2012
2
2
 
3
3
  ### Features
4
4
 
@@ -14,6 +14,8 @@
14
14
 
15
15
  - Fixed problems related to KVO-ing `Formable` objects.
16
16
 
17
+ - Use `UIKeyboardTypeNumberPad` for iPads; `UIKeyboardTypeDecimalPad` doesn't exist for those.
18
+
17
19
  ## 1.1.2 - October 6, 2012
18
20
 
19
21
  ### Bug Fixes
@@ -3,6 +3,9 @@ module Formotion
3
3
  class NumberRow < StringRow
4
4
 
5
5
  def keyboardType
6
+ if Device.ipad?
7
+ return UIKeyboardTypeNumberPad
8
+ end
6
9
  UIKeyboardTypeDecimalPad
7
10
  end
8
11
 
@@ -1,3 +1,3 @@
1
1
  module Formotion
2
- VERSION = "1.1.3"
2
+ VERSION = "1.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: formotion
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -196,7 +196,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
196
196
  version: '0'
197
197
  segments:
198
198
  - 0
199
- hash: 397181298113025173
199
+ hash: 4124450526448919813
200
200
  required_rubygems_version: !ruby/object:Gem::Requirement
201
201
  none: false
202
202
  requirements:
@@ -205,7 +205,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
205
205
  version: '0'
206
206
  segments:
207
207
  - 0
208
- hash: 397181298113025173
208
+ hash: 4124450526448919813
209
209
  requirements: []
210
210
  rubyforge_project:
211
211
  rubygems_version: 1.8.23