knockout-rails 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/HISTORY.md CHANGED
@@ -1,3 +1,13 @@
1
+ # x.y.z - in progress
2
+
3
+ - Support collections (fetch multiple records)
4
+ - Client side validation
5
+ - JST templating support
6
+
7
+ # 0.0.4 - 20 December 2011
8
+
9
+ - Fix to inplace edit to be able to switch back to view mode when no value has changed
10
+
1
11
  # 0.0.3 - in progress
2
12
 
3
13
  - Support collections (fetch multiple records)
data/README.md CHANGED
@@ -24,7 +24,7 @@ Reference `knockout` from your JavaScript as you normally do with Rails 3.1 Asse
24
24
  After you've referenced the `knockout` you can create your first persistent Model.
25
25
 
26
26
  ```coffee
27
- class Page extends ko.Model
27
+ class @Page extends ko.Model
28
28
  @configure 'page' # This is enough to save the model RESTfully to `/pages/{id}` URL
29
29
  ```
30
30
 
@@ -85,7 +85,7 @@ The list of currently available bindings:
85
85
  - `inplace` - converts the input elements into inplace editing with 'Edit'/'Done' buttons. Apply it on `input` elements similarly to the `value` binding.
86
86
  - `color` - converts an element into a color picker. Apply it to a `div` element: `color: page.fontColor`. Depends on [pakunok](https://github.com/dnagir/pakunok) gem (specifically - its `colorpicker` asset).
87
87
  - `onoff` - Converts checkboxes into iOS on/off buttons. Example: `onoff: page.isPublic`. It depends on [ios-chechboxes](https://github.com/dnagir/ios-checkboxes) gem.
88
- - 'animate' - runs the animation. Example: `animate: {width: quotaUsed, height: quotaUsed(), duration: 2000}`.
88
+ - `animate` - runs the animation when dependent attributes change. Example: `animate: {width: quotaUsed, height: quotaUsed(), duration: 2000}`.
89
89
 
90
90
  Please see the specs for more detailed instruction on how to use the specific binding.
91
91
 
@@ -95,7 +95,7 @@ Please see the specs for more detailed instruction on how to use the specific bi
95
95
 
96
96
  - Source hosted at [GitHub](https://github.com/dnagir/knockout-rails)
97
97
  - Report issues and feature requests to [GitHub Issues](https://github.com/dnagir/knockout-rails/issues)
98
- - Ping me on Twitter for quickly thing [@dnagir](https://twitter.com/#!/dnagir)
98
+ - Ping me on Twitter [@dnagir](https://twitter.com/#!/dnagir)
99
99
  - Look at the `HISTORY.md` file for current TODO list and other details.
100
100
 
101
101
 
@@ -36,8 +36,7 @@ ko.bindingHandlers.inplace =
36
36
  e.preventDefault()
37
37
  if editing element
38
38
  updateValue element, valueAccessor
39
- else
40
- toggle element, valueAccessor
39
+ toggle element, valueAccessor
41
40
 
42
41
 
43
42
  update: (element, valueAccessor) ->
@@ -1,3 +1,3 @@
1
1
  module KnockoutRails
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -40,3 +40,12 @@ describe "In-Place edit", ->
40
40
  el.val('updated')
41
41
  el.parent().find('.inline-button').click() # Done
42
42
  expect( val() ).toBe 'updated'
43
+
44
+ it "should switch from Edit mode when nothing has been changed", ->
45
+ val = ko.observable 'hiii'
46
+ el = inplacify val
47
+ button = el.parent().find('.inline-button')
48
+ button.click() # Editing (Done label)
49
+ button.click() # Showing -> (Edit label)
50
+ expect(button).toHaveText('Edit')
51
+ expect(el.parent().find('.editable-content')).toBeVisible()
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knockout-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-11-26 00:00:00.000000000 Z
12
+ date: 2011-12-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sprockets
16
- requirement: &70126369879100 !ruby/object:Gem::Requirement
16
+ requirement: &70195650949160 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 2.0.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70126369879100
24
+ version_requirements: *70195650949160
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: execjs
27
- requirement: &70126369878560 !ruby/object:Gem::Requirement
27
+ requirement: &70195650948120 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70126369878560
35
+ version_requirements: *70195650948120
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: jquery-rails
38
- requirement: &70126369878020 !ruby/object:Gem::Requirement
38
+ requirement: &70195650947120 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: '0'
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *70126369878020
46
+ version_requirements: *70195650947120
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: rspec
49
- requirement: &70126369877580 !ruby/object:Gem::Requirement
49
+ requirement: &70195650946260 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ! '>='
@@ -54,10 +54,10 @@ dependencies:
54
54
  version: '0'
55
55
  type: :development
56
56
  prerelease: false
57
- version_requirements: *70126369877580
57
+ version_requirements: *70195650946260
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: rails
60
- requirement: &70126369877040 !ruby/object:Gem::Requirement
60
+ requirement: &70195650945240 !ruby/object:Gem::Requirement
61
61
  none: false
62
62
  requirements:
63
63
  - - ! '>='
@@ -65,7 +65,7 @@ dependencies:
65
65
  version: 3.1.1
66
66
  type: :development
67
67
  prerelease: false
68
- version_requirements: *70126369877040
68
+ version_requirements: *70195650945240
69
69
  description: Include the knockout.js and some of its extensions so you can pick what
70
70
  you need. Adds the support for models and interation with the Rails backend.
71
71
  email:
@@ -152,7 +152,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
152
152
  version: '0'
153
153
  segments:
154
154
  - 0
155
- hash: 3220950392876216281
155
+ hash: 100088896240840857
156
156
  required_rubygems_version: !ruby/object:Gem::Requirement
157
157
  none: false
158
158
  requirements:
@@ -161,7 +161,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
161
161
  version: '0'
162
162
  segments:
163
163
  - 0
164
- hash: 3220950392876216281
164
+ hash: 100088896240840857
165
165
  requirements: []
166
166
  rubyforge_project: knockout-rails
167
167
  rubygems_version: 1.8.10