vue-rails 2.0.1 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,17 +6,16 @@ Gem::Specification.new do |s|
6
6
  s.name = "vue-rails"
7
7
  s.version = Vue::Rails::VERSION
8
8
  s.authors = ["Marshall Shen"]
9
- s.email = ["shen.marshall@gmail.com"]
10
- s.homepage = "https://github.com/marshallshen/vue-rails"
11
- s.summary = %q{Ruby gem for using Vue.js in Rails}
12
- s.description = "Ruby gem for using Vue.js in Ruby on Rails"
9
+ s.email = ["marshall@chefy.io", "she.marshall@gmail.com"]
10
+ s.homepage = "https://github.com/chefy-io/vue-rails"
11
+ s.summary = %q{vue.js asset pipeline provider/wrapper}
12
+ s.description = "A simple asset-pipeline wrapper for vue.js by Evan You"
13
13
  s.license = "MIT"
14
14
 
15
- s.rubyforge_project = "vue-rails"
16
15
 
17
16
  s.files = `git ls-files`.split("\n")
18
17
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
18
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
19
  s.require_paths = ["lib"]
21
20
 
22
- end
21
+ end
metadata CHANGED
@@ -1,33 +1,37 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vue-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marshall Shen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-09 00:00:00.000000000 Z
11
+ date: 2017-03-14 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Ruby gem for using Vue.js in Ruby on Rails
13
+ description: A simple asset-pipeline wrapper for vue.js by Evan You
14
14
  email:
15
- - shen.marshall@gmail.com
15
+ - marshall@chefy.io
16
+ - she.marshall@gmail.com
16
17
  executables: []
17
18
  extensions: []
18
19
  extra_rdoc_files: []
19
20
  files:
20
- - .gitignore
21
+ - ".gitignore"
21
22
  - Gemfile
22
- - LICENSE
23
- - README.md
23
+ - LICENSE.md
24
24
  - Rakefile
25
+ - Readme.md
25
26
  - lib/vue-rails.rb
27
+ - lib/vue-rails/engine.rb
26
28
  - lib/vue-rails/version.rb
29
+ - vendor/assets/javascripts/vue-resource.js
27
30
  - vendor/assets/javascripts/vue-router.js
28
31
  - vendor/assets/javascripts/vue.js
32
+ - vendor/assets/javascripts/vuex.js
29
33
  - vue-rails.gemspec
30
- homepage: https://github.com/marshallshen/vue-rails
34
+ homepage: https://github.com/chefy-io/vue-rails
31
35
  licenses:
32
36
  - MIT
33
37
  metadata: {}
@@ -37,18 +41,18 @@ require_paths:
37
41
  - lib
38
42
  required_ruby_version: !ruby/object:Gem::Requirement
39
43
  requirements:
40
- - - '>='
44
+ - - ">="
41
45
  - !ruby/object:Gem::Version
42
46
  version: '0'
43
47
  required_rubygems_version: !ruby/object:Gem::Requirement
44
48
  requirements:
45
- - - '>='
49
+ - - ">="
46
50
  - !ruby/object:Gem::Version
47
51
  version: '0'
48
52
  requirements: []
49
- rubyforge_project: vue-rails
50
- rubygems_version: 2.0.14.1
53
+ rubyforge_project:
54
+ rubygems_version: 2.5.1
51
55
  signing_key:
52
56
  specification_version: 4
53
- summary: Ruby gem for using Vue.js in Rails
57
+ summary: vue.js asset pipeline provider/wrapper
54
58
  test_files: []
data/README.md DELETED
@@ -1,21 +0,0 @@
1
- # vue-rails
2
-
3
- ## About
4
-
5
- Rails 4+ asset-pipeline gem to provide vue.js
6
-
7
- ## Versions
8
-
9
- - vue v2.0.1
10
- - vue-router v2.0.0
11
-
12
- ## Setup
13
-
14
- Have in your Gemfile:
15
-
16
- gem 'vue-rails'
17
-
18
- And in your application.js manifest:
19
-
20
- //= require vue
21
- //= require vue-router (optional)