polymer-rails 0.1.6 → 0.1.7

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b177a297823445d8ee104c389d6ee19c3d7da4ee
4
- data.tar.gz: 99924c6647c1af2b93859e3a4831ed69e2d30240
3
+ metadata.gz: ce9e6b8ca36652c1563ed4240ba1248660d8a034
4
+ data.tar.gz: a141bc1fab05e74c09a79423220df302c3f263b6
5
5
  SHA512:
6
- metadata.gz: 5e02c83dfa78ad950a3b7256d652cc36357d843e96af78779586fdbbe83eed98c3d29f01f270b51663817a4e91f766571a81d400f7541c161b1e6b059a2290d6
7
- data.tar.gz: c1b16bdba5e965c506cce38385cedcf5c319e320a61ea0a2f3ccc1cdc7f063f45c827561175f00416372c30d1d78434a1cf9690151de378eed04e5798bab7327
6
+ metadata.gz: 200926831d61fa1ec8e8e5b1bd52a1e4bcf72f10c460c53e2e13eb09496cbf3aa76beaaf99b5f476f383e22698aab11265b5183d481b1a871ad7dd7fe8f7e071
7
+ data.tar.gz: 25a4d8a45d2f6bac46a529ceebcc308e8a73b93e8a2bef796ba20033172a465c2eda8bde1848da43206b6a1d798ff4e7c3c385216efbeba9d7b3fdb0f0e0038f
data/README.md CHANGED
@@ -29,6 +29,12 @@ This generator adds `//= require polymer/platform` into `application` manifest f
29
29
 
30
30
  This generates new `<component-name>` component directory and .html file of the same name under `app/assets/components` directory.
31
31
 
32
+ Under `app/assets/components` directory you can now build your web components.
33
+
34
+ See example Rails application here [http://polymer-rails-example.herokuapp.com/](http://polymer-rails-example.herokuapp.com/)
35
+
36
+ Source code can be found here [https://github.com/alchapone/polymer-rails-example](https://github.com/alchapone/polymer-rails-example)
37
+
32
38
  ## Contributing
33
39
 
34
40
  1. Fork it ( http://github.com/alchapone/polymer-rails/fork )
@@ -8,7 +8,7 @@ module Polymer
8
8
  end
9
9
 
10
10
  def copy_component_template
11
- template "component.html.erb", "app/assets/components/#{file_name}/#{file_name}.html"
11
+ template "component.html.erb", "app/assets/components/#{file_name}/#{file_name}.html.erb"
12
12
  end
13
13
 
14
14
  end
@@ -1,5 +1,5 @@
1
1
  module Polymer
2
2
  module Rails
3
- VERSION = "0.1.6"
3
+ VERSION = "0.1.7"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,55 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: polymer-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Chaplinsky
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-01 00:00:00.000000000 Z
11
+ date: 2014-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: 3.1.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: 3.1.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ~>
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.5'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ~>
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.5'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ~>
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ~>
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  description: Use of web components and polymer-project in Ruby on Rails projects
@@ -82,17 +82,17 @@ require_paths:
82
82
  - lib
83
83
  required_ruby_version: !ruby/object:Gem::Requirement
84
84
  requirements:
85
- - - ">="
85
+ - - '>='
86
86
  - !ruby/object:Gem::Version
87
87
  version: '0'
88
88
  required_rubygems_version: !ruby/object:Gem::Requirement
89
89
  requirements:
90
- - - ">="
90
+ - - '>='
91
91
  - !ruby/object:Gem::Version
92
92
  version: '0'
93
93
  requirements: []
94
94
  rubyforge_project:
95
- rubygems_version: 2.2.2
95
+ rubygems_version: 2.3.0
96
96
  signing_key:
97
97
  specification_version: 4
98
98
  summary: Use of web components with polymer with rails