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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b8d9dc7c9097ed29acb3ed0c9f7b63bddf767d85
4
- data.tar.gz: a3928d7ef088a82b2fb1177df9565d2d151d9e11
3
+ metadata.gz: 034b0dfd7ecee12789b478c8d26ff4f119efd48f
4
+ data.tar.gz: 7d61d63ae5e3997e08bd3196b4554f4090d2b196
5
5
  SHA512:
6
- metadata.gz: 12ad9164a84fd0e868bf5f5bee765d9ce1d76e1152ce537839f6361d913d8002cf1d51b53f72132870bdbea90c399c3d8eac112ae2665e791d5cef94d3c784d0
7
- data.tar.gz: d560b4a55c2607acac95ca53b90a0d347a8d262305555c785ef7ad85d582b3ea835637c2c4db4e5f0a1ef817c223b0caac6ffaedf3b8d0d7e9bf6c5ffd0eb334
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
- all copies or substantial portions of the Software.
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
- THE SOFTWARE.
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
 
@@ -1,11 +1,5 @@
1
1
  module Log
2
2
  MESSAGE = "
3
-
4
- ######################
5
- ## vuejs
6
- ######################
7
-
8
- Full Changelog -> https://github.com/ytbryan/vuejs/blob/master/changelog.md
9
3
  Pull Request -> https://github.com/ytbryan/vuejs/pulls
10
4
  "
11
5
  end
data/lib/vuejs/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Vuejs
2
- VERSION = "1.0.17"
2
+ VERSION = "1.0.18.pre"
3
3
  end