vuejs 1.0.17 → 1.0.18.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +5 -5
- data/README.md +13 -0
- data/lib/vuejs/post_message.rb +0 -6
- data/lib/vuejs/version.rb +1 -1
- data/vendor/assets/javascripts/vue.js +778 -766
- metadata +10 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 034b0dfd7ecee12789b478c8d26ff4f119efd48f
|
4
|
+
data.tar.gz: 7d61d63ae5e3997e08bd3196b4554f4090d2b196
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 482eb85e0db5008939bbd83962cb8a81947caf3cf3347e25b379c4f50e75261a4c19e28bd1dda42b13561e0da018a54217df9c9fc6ad45ece50f1ff07992b25f
|
7
|
+
data.tar.gz: 5bc73b44cb58135ddad563abb5218deb4097c0e0fd9d76392b3311576946c56fb3a54ab91b38873cf89ca80edec45a08c77fcfd4ac58a3291305aa2281a35680
|
data/LICENSE
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright (c) 2016 Bryan Lim
|
3
|
+
Copyright (c) 2016 Bryan Lim
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
@@ -9,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
9
|
copies of the Software, and to permit persons to whom the Software is
|
10
10
|
furnished to do so, subject to the following conditions:
|
11
11
|
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
13
|
-
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
14
|
|
15
15
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
16
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
17
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
-
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
|
3
3
|
Vuejs ships with the latest [Vue.js + router + resource](http://vuejs.org/) and integrate with Rails' asset pipeline.
|
4
4
|
|
5
|
+
The current version is Vue.js (v0.7.11) + vue-router (v1.0.17) + vue-resource (0.7.0)
|
6
|
+
|
5
7
|
> Reactive Components for Modern Web Interfaces
|
6
8
|
|
7
9
|
## Installation
|
@@ -20,6 +22,17 @@ Or install it yourself as:
|
|
20
22
|
|
21
23
|
$ gem install vuejs
|
22
24
|
|
25
|
+
## Usage
|
26
|
+
|
27
|
+
```
|
28
|
+
//= require jquery
|
29
|
+
//= require jquery_ujs
|
30
|
+
//= require turbolinks
|
31
|
+
//= require vue
|
32
|
+
//= require vue-router #(optional)
|
33
|
+
//= require vue-resource #(optional)
|
34
|
+
//= require_tree .
|
35
|
+
```
|
23
36
|
|
24
37
|
## Development
|
25
38
|
|
data/lib/vuejs/post_message.rb
CHANGED
data/lib/vuejs/version.rb
CHANGED