vuejs 1.0.17

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b8d9dc7c9097ed29acb3ed0c9f7b63bddf767d85
4
+ data.tar.gz: a3928d7ef088a82b2fb1177df9565d2d151d9e11
5
+ SHA512:
6
+ metadata.gz: 12ad9164a84fd0e868bf5f5bee765d9ce1d76e1152ce537839f6361d913d8002cf1d51b53f72132870bdbea90c399c3d8eac112ae2665e791d5cef94d3c784d0
7
+ data.tar.gz: d560b4a55c2607acac95ca53b90a0d347a8d262305555c785ef7ad85d582b3ea835637c2c4db4e5f0a1ef817c223b0caac6ffaedf3b8d0d7e9bf6c5ffd0eb334
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Bryan Lim
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
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.
data/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # Vuejs
2
+
3
+ Vuejs ships with the latest [Vue.js + router + resource](http://vuejs.org/) and integrate with Rails' asset pipeline.
4
+
5
+ > Reactive Components for Modern Web Interfaces
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'vuejs'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install vuejs
22
+
23
+
24
+ ## Development
25
+
26
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
27
+
28
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
29
+
30
+ ## Contributing
31
+
32
+ Bug reports and pull requests are welcome on GitHub at https://github.com/ytbryan/vuejs. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
33
+
34
+
35
+ ## License
36
+
37
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -0,0 +1,11 @@
1
+ module Log
2
+ MESSAGE = "
3
+
4
+ ######################
5
+ ## vuejs
6
+ ######################
7
+
8
+ Full Changelog -> https://github.com/ytbryan/vuejs/blob/master/changelog.md
9
+ Pull Request -> https://github.com/ytbryan/vuejs/pulls
10
+ "
11
+ end
@@ -0,0 +1,3 @@
1
+ module Vuejs
2
+ VERSION = "1.0.17"
3
+ end
data/lib/vuejs.rb ADDED
@@ -0,0 +1,6 @@
1
+ require "vuejs/version"
2
+
3
+ module Vuejs
4
+ class Engine < ::Rails::Engine
5
+ end
6
+ end